• About
  • Advertise
  • Privacy & Policy
  • Contact
HK Businesswire
  • Home
  • News
    • All
    • Business
    • Politics
    • PR Newswire
    • Science
    • World
    When it comes to language, context matters

    When it comes to language, context matters

    iQIYI Scream Night 2025 Spotlights Creative Excellence and Industry Momentum

    iQIYI Scream Night 2025 Spotlights Creative Excellence and Industry Momentum

    Mass evacuations due to fresh Thai-Cambodia clashes

    Mass evacuations due to fresh Thai-Cambodia clashes

    Exito’s Rising Power in ASEAN: Five Years of Regional Impact Backed by a 15-Year Global Legacy

    Exito’s Rising Power in ASEAN: Five Years of Regional Impact Backed by a 15-Year Global Legacy

    IIJ Launches Enhanced Safous Security Assessment With Expanded Attack Surface Monitoring and New Support Capabilities

    IIJ Launches Enhanced Safous Security Assessment With Expanded Attack Surface Monitoring and New Support Capabilities

    BIG CARiNG Group Partners with Lark to Drive Digital Healthcare Transformation, Enhancing Efficiency and Customer Experience

    BIG CARiNG Group Partners with Lark to Drive Digital Healthcare Transformation, Enhancing Efficiency and Customer Experience

    Trending Tags

    • Trump Inauguration
    • United Stated
    • White House
    • Market Stories
    • Election Results
  • PR Newswire
  • Business
  • World
  • Entertainment
  • Sports
  • Tech
    • All
    • Apps
    • Gadget
    • Mobile
    • Startup

    Morgan Stanley Says Ping An Good Doctor Builds AI-Driven Competitive Moat, Mid-Term Revenue Growth Seen Above 10%

    Meituan Reports Q3 2025 Results: Revenue Reaches RMB95.5 Billion as Annual Transacting Users Surpass 800 Million

    Xiaomi Founder Lei Jun Boosts Stake as Company Ramps Up Buybacks, Signaling Confidence

    Ant Group’s Multimodal AI Assistant LingGuang Surpasses 1 Million Downloads in Four Days

    Xiaomi Produces 500,000th EV in Record Time, CEO Lei Jun Pledges Focus on Safety and Delivery

    Morrison Foerster Report: ESG Committees and Climate Policy Gaining Traction Among Asia’s Largest GPs

    Trending Tags

    • Nintendo Switch
    • CES 2017
    • Playstation 4 Pro
    • Mark Zuckerberg
  • Feature
No Result
View All Result
  • Home
  • News
    • All
    • Business
    • Politics
    • PR Newswire
    • Science
    • World
    When it comes to language, context matters

    When it comes to language, context matters

    iQIYI Scream Night 2025 Spotlights Creative Excellence and Industry Momentum

    iQIYI Scream Night 2025 Spotlights Creative Excellence and Industry Momentum

    Mass evacuations due to fresh Thai-Cambodia clashes

    Mass evacuations due to fresh Thai-Cambodia clashes

    Exito’s Rising Power in ASEAN: Five Years of Regional Impact Backed by a 15-Year Global Legacy

    Exito’s Rising Power in ASEAN: Five Years of Regional Impact Backed by a 15-Year Global Legacy

    IIJ Launches Enhanced Safous Security Assessment With Expanded Attack Surface Monitoring and New Support Capabilities

    IIJ Launches Enhanced Safous Security Assessment With Expanded Attack Surface Monitoring and New Support Capabilities

    BIG CARiNG Group Partners with Lark to Drive Digital Healthcare Transformation, Enhancing Efficiency and Customer Experience

    BIG CARiNG Group Partners with Lark to Drive Digital Healthcare Transformation, Enhancing Efficiency and Customer Experience

    Trending Tags

    • Trump Inauguration
    • United Stated
    • White House
    • Market Stories
    • Election Results
  • PR Newswire
  • Business
  • World
  • Entertainment
  • Sports
  • Tech
    • All
    • Apps
    • Gadget
    • Mobile
    • Startup

    Morgan Stanley Says Ping An Good Doctor Builds AI-Driven Competitive Moat, Mid-Term Revenue Growth Seen Above 10%

    Meituan Reports Q3 2025 Results: Revenue Reaches RMB95.5 Billion as Annual Transacting Users Surpass 800 Million

    Xiaomi Founder Lei Jun Boosts Stake as Company Ramps Up Buybacks, Signaling Confidence

    Ant Group’s Multimodal AI Assistant LingGuang Surpasses 1 Million Downloads in Four Days

    Xiaomi Produces 500,000th EV in Record Time, CEO Lei Jun Pledges Focus on Safety and Delivery

    Morrison Foerster Report: ESG Committees and Climate Policy Gaining Traction Among Asia’s Largest GPs

    Trending Tags

    • Nintendo Switch
    • CES 2017
    • Playstation 4 Pro
    • Mark Zuckerberg
  • Feature
No Result
View All Result
HK Businesswire
No Result
View All Result
Home News Science

High-performance computing, with much less code

Writer by Writer
13 March 2025
in Science
0
High-performance computing, with much less code
0
SHARES
1
VIEWS
Share on FacebookShare on Twitter

Many companies invest heavily in hiring talent to create the high-performance library code that underpins modern artificial intelligence systems. NVIDIA, for instance, developed some of the most advanced high-performance computing (HPC) libraries, creating a competitive moat that has proven difficult for others to breach.

But what if a couple of students, within a few months, could compete with state-of-the-art HPC libraries with a few hundred lines of code, instead of tens or hundreds of thousands?

That’s what researchers at MIT’s Computer Science and Artificial Intelligence Laboratory (CSAIL) have shown with a new programming language called Exo 2.

Exo 2 belongs to a new category of programming languages that MIT Professor Jonathan Ragan-Kelley calls “user-schedulable languages” (USLs). Instead of hoping that an opaque compiler will auto-generate the fastest possible code, USLs put programmers in the driver’s seat, allowing them to write “schedules” that explicitly control how the compiler generates code. This enables performance engineers to transform simple programs that specify what they want to compute into complex programs that do the same thing as the original specification, but much, much faster.

One of the limitations of existing USLs (like the original Exo) is their relatively fixed set of scheduling operations, which makes it difficult to reuse scheduling code across different “kernels” (the individual components in a high-performance library).

In contrast, Exo 2 enables users to define new scheduling operations externally to the compiler, facilitating the creation of reusable scheduling libraries. Lead author Yuka Ikarashi, an MIT PhD student in electrical engineering and computer science and CSAIL affiliate, says that Exo 2 can reduce total schedule code by a factor of 100 and deliver performance competitive with state-of-the-art implementations on multiple different platforms, including Basic Linear Algebra Subprograms (BLAS) that power many machine learning applications. This makes it an attractive option for engineers in HPC focused on optimizing kernels across different operations, data types, and target architectures.

“It’s a bottom-up approach to automation, rather than doing an ML/AI search over high-performance code,” says Ikarashi. “What that means is that performance engineers and hardware implementers can write their own scheduling library, which is a set of optimization techniques to apply on their hardware to reach the peak performance.”

One major advantage of Exo 2 is that it reduces the amount of coding effort needed at any one time by reusing the scheduling code across applications and hardware targets. The researchers implemented a scheduling library with roughly 2,000 lines of code in Exo 2, encapsulating reusable optimizations that are linear-algebra specific and target-specific (AVX512, AVX2, Neon, and Gemmini hardware accelerators). This library consolidates scheduling efforts across more than 80 high-performance kernels with up to a dozen lines of code each, delivering performance comparable to, or better than, MKL, OpenBLAS, BLIS, and Halide.

Exo 2 includes a novel mechanism called “Cursors” that provides what they call a “stable reference” for pointing at the object code throughout the scheduling process. Ikarashi says that a stable reference is essential for users to encapsulate schedules within a library function, as it renders the scheduling code independent of object-code transformations.

“We believe that USLs should be designed to be user-extensible, rather than having a fixed set of operations,” says Ikarashi. “In this way, a language can grow to support large projects through the implementation of libraries that accommodate diverse optimization requirements and application domains.”

Exo 2’s design allows performance engineers to focus on high-level optimization strategies while ensuring that the underlying object code remains functionally equivalent through the use of safe primitives. In the future, the team hopes to expand Exo 2’s support for different types of hardware accelerators, like GPUs. Several ongoing projects aim to improve the compiler analysis itself, in terms of correctness, compilation time, and expressivity.

Ikarashi and Ragan-Kelley co-authored the paper with graduate students Kevin Qian and Samir Droubi, Alex Reinking of Adobe, and former CSAIL postdoc Gilbert Bernstein, now a professor at the University of Washington. This research was funded, in part, by the U.S. Defense Advanced Research Projects Agency (DARPA) and the U.S. National Science Foundation, while the first author was also supported by Masason, Funai, and Quad Fellowships.

Tags: Science
Writer

Writer

Read More

When it comes to language, context matters

When it comes to language, context matters

10 December 2025

Too sick to socialize: How the brain and immune system promote staying in bed

9 December 2025
  • Trending
  • Comments
  • Latest

Morgan Stanley Says Ping An Good Doctor Builds AI-Driven Competitive Moat, Mid-Term Revenue Growth Seen Above 10%

8 December 2025
No for now on women deacons, Vatican commission says

No for now on women deacons, Vatican commission says

4 December 2025
Tai Po fire death toll climbs to 44, 56 injured

Tai Po fire death toll climbs to 44, 56 injured

26 November 2025

Ant Group’s Multimodal AI Assistant LingGuang Surpasses 1 Million Downloads in Four Days

23 November 2025
When it comes to language, context matters

When it comes to language, context matters

10 December 2025
iQIYI Scream Night 2025 Spotlights Creative Excellence and Industry Momentum

iQIYI Scream Night 2025 Spotlights Creative Excellence and Industry Momentum

10 December 2025
Mass evacuations due to fresh Thai-Cambodia clashes

Mass evacuations due to fresh Thai-Cambodia clashes

10 December 2025
Exito’s Rising Power in ASEAN: Five Years of Regional Impact Backed by a 15-Year Global Legacy

Exito’s Rising Power in ASEAN: Five Years of Regional Impact Backed by a 15-Year Global Legacy

10 December 2025

Recent News

When it comes to language, context matters

When it comes to language, context matters

10 December 2025
iQIYI Scream Night 2025 Spotlights Creative Excellence and Industry Momentum

iQIYI Scream Night 2025 Spotlights Creative Excellence and Industry Momentum

10 December 2025
Mass evacuations due to fresh Thai-Cambodia clashes

Mass evacuations due to fresh Thai-Cambodia clashes

10 December 2025
Exito’s Rising Power in ASEAN: Five Years of Regional Impact Backed by a 15-Year Global Legacy

Exito’s Rising Power in ASEAN: Five Years of Regional Impact Backed by a 15-Year Global Legacy

10 December 2025
HK Businesswire

Stay ahead with the latest insights on Hong Kong’s economy, finance, and investments. From market trends to policy updates, we bring you in-depth analysis and expert opinions.

📩 Subscribe to our newsletter for exclusive updates.
📍 Follow us on social media for real-time news.
📧 Contact us: info@hongkong-invest.com

Follow Us

  • About
  • Advertise
  • Privacy & Policy
  • Contact

© 2025 by HKBusinesswire.com

No Result
View All Result

© 2025 by HKBusinesswire.com