Tackling HPC’s Memory and I/O Bottlenecks with On-Node, Non-Volatile RAM

By Jan Rowell

November 8, 2019

On-node, non-volatile memory (NVRAM) is a game-changing technology that can remove many I/O and memory bottlenecks and provide a key enabler for exascale.

That’s the conclusion drawn by the scientists and researchers of Europe’s NEXTGenIO project, an initiative funded by the European Commission’s Horizon 2020 program to explore this new technology’s potential impact for high-performance computing (HPC).

“When you put vast amounts of high-performance, byte-addressable NVRAM in the compute nodes, everything changes,” said Adrian Jackson, senior research fellow at EPCC, the supercomputing centre at the University of Edinburgh, and the software architect for a 34-node prototype platform the NEXTGenIO partner organizations co-developed to support their research. “The compute nodes become storage nodes as well as memory nodes, and you can scale your I/O bandwidth and use I/O differently. You need the right tools to access the data within the nodes, but you can use the data in different ways depending on your applications.”

The implications are exciting for HPC users like Tiago Quintino, who works with massive, fast-growing data sets at the European Center for Medium-Range Weather Forecasts (ECMWF). “We can do so much more,” he said. “We can have much more complex structures in memory. We can use the data where it is, without having to move it throughout the workflow. With the time we save, we can run more complex workflows, do more physics, increase model resolution. Extrapolating our data growth, which has been increasing three times every two years, an I/O system based on this technology will let me cope for the next 10-15 years. It is a game changer.

Exploring Non-Volatile, On-Node Memory

In addition to EPCC and ECMWF, NEXTGenIO partners include Fujitsu, Intel, Barcelona Supercomputing Center (BSC), the Technical University of Dresden, ARM, and ARCTUR. The platform they co-designed followed a requirements-driven process that also specified realistic constraints. It features a custom motherboard populated with 3 TB of Intel Optane DC persistent memory (DCPMM), dual 2nd Generation Intel Xeon Scalable processors, and 192 GB of DRAM. The Intel Optane DC memory is hosted as standard DIMMS that reside on the memory bus and can be controlled by the CPU’s integrated memory controllers. Nodes also connect to two Intel Omni-Path high-performance networks, making it possible for MPI traffic to travel over one network and storage communications across the other.

Software developed for the system includes a multi-node, local and distributed NVRAM file system that allows legacy applications to transparently benefit from the new memory/storage layer without application changes. The distributed file system uses application object stores to provide data locality and reduce reliance on parallel file systems such as Lustre. Other system software includes performance profiling and debugging tools, as well as extensions to the SLURM scheduler and workload manager for managing data locality and incorporating a job’s energy consumption into job placement decisions.

Fujitsu built the system and motherboard at its facility in Augsburg, Germany, and the system was installed at EPCC in late March 2019. It will be available to NEXTGenIO collaborators and select I/O researchers for the next three years, giving Europe a major resource to advance the understanding and use of a significant new memory technology.

Project members have begun sharing initial results that demonstrate the technology’s impact for varied HPC use cases.[1] Here are three examples.

ECMWF’s Integrated Forecasting System: Intense I/O in a Time-Critical Workflow

Based in the UK, ECMWF produces weather forecasts five to fifteen days out, multiple times per day, for its customers around the world. Its Integrated Forecasting System (IFS) writes its result—about 25 TB per hour—into ECMWF’s distributed Fields Database (FDB). The subsequent workflow involves several hundred postprocessing steps, many conducted in parallel and needing rapid access to the data output. If the central parallel file system is slowed by other workloads, forecasters have to throttle the forecast and slow the model.

Using the NEXTGenIO platform, ECMWF demonstrated the ability to output the data to the new class of memory and significantly increase performance. For IFS writing into ECMWF’s Fields Database, 16 NEXTGenIO nodes delivered 60 GiB/s read bandwidth and 72 GiB/s write bandwidth compared to sustained read throughput of 22.4 GiB/s and write throughput of 20 GiB/s on a system with 288 Lustre Object Store Service (OST) nodes with 10 disks per node. It produced an end-to-end improvement in the workflow of more than an order of magnitude. ECMWF expects to see further improvements upon optimizing the FDB code.

CASTEP: Massive Memory Requirements, Minimal I/O

CASTEP is shared source software that uses density functional theory to calculate material properties from first principles. It is used for a range of materials and substances, including DNA as well as new and exotic elements.

Many CASTEP simulations require large amounts of memory per MPI process, exceeding the memory capacity of typical HPC systems. This often forces users to reduce the number of MPI processes per node, underpopulating the CPUs and running the simulation over many nodes in order to fit the simulation into DRAM.

EPCC used CASTEP to run a memory-hungry DNA simulation on the NEXTGenIO platform, enabling a single DNA simulation that requires 20 nodes when using DRAM-only to run on just a single node, albeit much more slowly. On four nodes (Table 1), using five times fewer, the DCPMM implementation was just over three times slower than an all-DRAM execution on the NEXTGenIO system.

Table 1. CASTEP Benchmark Results

The practical implications are immense, providing HPC sites with an economical and power-efficient if somewhat slower alternative to deploying a full-DRAM platform for workloads where memory requirements outstrip compute needs. The freed nodes can be used for other jobs, optimizing overall throughput and adding to the cost benefits.

OpenFOAM: Heavy I/O with Numerous Small Files

OpenFOAM is an open source 3D computational fluid dynamics package that is effectively a collection of applications used in a complex workflow of tasks from mesh creation through postprocessing.

Here the challenge is not only the overall quantity of data, but also the large number of small files written for each time step. To explore the problem, EPCC simulated the air flow around a small electric aircraft. In 1,000 time steps, OpenFOAM was configured to write its results every five time steps. Running on 16 nodes with 448 processes, the interim results reached 806,400 files and 1.2 TB of data. Performance analysis showed that in a traditional implementation, I/O consumed 50 percent of the execution time, severely limiting scalability.

EPCC used the system software to effectively mount a node-local file system on the compute nodes’ Intel Optane DC memory. Interim results were written to the local node, using the DCPMM as storage and having the system software move the data on and off the nodes as needed. This reduced the overall runtime by as much as 50 percent, and the advantage increased with scale. These runtime savings provide opportunities to do more compute and explore more solution alternatives.

Insights from Early Adopters

NEXTGenIO collaborators offered the following suggestions for HPC users and technology innovators.

  • Think differently. “Don’t judge this technology the way you judge a parallel file system like Lustre,” said Quintino. “Lustre is like a truck—it moves a lot of data slowly. Given a lot of trucks, you can move a lot of data and have a lot of throughput. This is a Formula One race car, the pinnacle of an I/O system. It can be the first layer in a layered system, it can be a burst buffer, but we should think beyond that. It opens workflows we’ve never thought of before.”
  • Be curious. Think about what use cases are pertinent to your workload and data center challenges. “At ECMWF, DCPMM is part of the storage hierarchy,” said Jackson. “Other apps can use it as a file store, or as a multi-node file system that uses the memory to do normal parallel I/O. Some are using it to create a larger memory space so they can put a problem in a single node instead of 20 or 30 nodes. Exploiting DCPMM requires careful thought and design for applications, but the benefits can be large.”
  • Be willing to do some work. Quintino compares Intel Optane DC persistent memory to GPUs, which required some code modifications to fully benefit from. While DCPMM can be used without code modifications, many applications will benefit from explicit control of the memory. Intel offers tools and libraries to facilitate using the memory’s full feature set.

A Way to Do More Science                 

The NEXTGenIO platform will be available to HPC users whose research goals are compatible with those of the NEXTGenIO project. Fujitsu is offering the new class of memory for select PRIMERGY and PRIMEQUEST models, and its technical teams are applying their NEXTGenIO learnings as they consult with customers.

Intel Optane DC persistent memory and the innovation added by the NEXTGenIO partners mark a welcome change in the HPC landscape, according to Michèle Weiland, a senior research fellow at EPCC and project manager for NEXTGenIO. “DCPMM represents a change in the landscape in how memory, I/O, and storage systems will evolve over next few years,” she said. “It can potentially show that there’s a way out of the problems we’re currently seeing. For people who are struggling with current traditional HPC systems, who don’t have enough memory or fast enough storage, or who are limited by the amount of data they can write, this approach may give them a way to improve this, and do more science.”

To learn more about the NEXTGenIO project, visit http://nextgenio.eu

For information about gaining access to the platform, contact Professor Mark Parsons, [email protected], or Dr Michèle Weiland, [email protected]

About the Author 

Jan Rowell covers technology trends and innovations in HPC, artificial intelligence, and other areas.

[1] A paper describing some of these results will appear as “An Early Evaluation of Intel’s Optane DC Persistent Memory Module and its Impact on High Performance Scientific Applications” by Michèle Weiland and others, in SC ’19 Proceedings of the International Conference for High Performance Computing, Networking, Storage, and Analysis. Quintino and others from ECMWF describe the object-store file system in “A High-Performance Distributed Object-Store for Exascale Numerical Weather Prediction and Climate,” in PASC ’19: Proceedings of the Platform for Advanced Scientific Computing Conference, https://dl.acm.org/citation.cfm?id=3324989.3325726

Subscribe to HPCwire's Weekly Update!

Be the most informed person in the room! Stay ahead of the tech trends with industry updates delivered to you every week!

Empowering High-Performance Computing for Artificial Intelligence

April 19, 2024

Artificial intelligence (AI) presents some of the most challenging demands in information technology, especially concerning computing power and data movement. As a result of these challenges, high-performance computing Read more…

Kathy Yelick on Post-Exascale Challenges

April 18, 2024

With the exascale era underway, the HPC community is already turning its attention to zettascale computing, the next of the 1,000-fold performance leaps that have occurred about once a decade. With this in mind, the ISC Read more…

2024 Winter Classic: Texas Two Step

April 18, 2024

Texas Tech University. Their middle name is ‘tech’, so it’s no surprise that they’ve been fielding not one, but two teams in the last three Winter Classic cluster competitions. Their teams, dubbed Matador and Red Read more…

2024 Winter Classic: The Return of Team Fayetteville

April 18, 2024

Hailing from Fayetteville, NC, Fayetteville State University stayed under the radar in their first Winter Classic competition in 2022. Solid students for sure, but not a lot of HPC experience. All good. They didn’t Read more…

Software Specialist Horizon Quantum to Build First-of-a-Kind Hardware Testbed

April 18, 2024

Horizon Quantum Computing, a Singapore-based quantum software start-up, announced today it would build its own testbed of quantum computers, starting with use of Rigetti’s Novera 9-qubit QPU. The approach by a quantum Read more…

2024 Winter Classic: Meet Team Morehouse

April 17, 2024

Morehouse College? The university is well-known for their long list of illustrious graduates, the rigor of their academics, and the quality of the instruction. They were one of the first schools to sign up for the Winter Read more…

Kathy Yelick on Post-Exascale Challenges

April 18, 2024

With the exascale era underway, the HPC community is already turning its attention to zettascale computing, the next of the 1,000-fold performance leaps that ha Read more…

Software Specialist Horizon Quantum to Build First-of-a-Kind Hardware Testbed

April 18, 2024

Horizon Quantum Computing, a Singapore-based quantum software start-up, announced today it would build its own testbed of quantum computers, starting with use o Read more…

MLCommons Launches New AI Safety Benchmark Initiative

April 16, 2024

MLCommons, organizer of the popular MLPerf benchmarking exercises (training and inference), is starting a new effort to benchmark AI Safety, one of the most pre Read more…

Exciting Updates From Stanford HAI’s Seventh Annual AI Index Report

April 15, 2024

As the AI revolution marches on, it is vital to continually reassess how this technology is reshaping our world. To that end, researchers at Stanford’s Instit Read more…

Intel’s Vision Advantage: Chips Are Available Off-the-Shelf

April 11, 2024

The chip market is facing a crisis: chip development is now concentrated in the hands of the few. A confluence of events this week reminded us how few chips Read more…

The VC View: Quantonation’s Deep Dive into Funding Quantum Start-ups

April 11, 2024

Yesterday Quantonation — which promotes itself as a one-of-a-kind venture capital (VC) company specializing in quantum science and deep physics  — announce Read more…

Nvidia’s GTC Is the New Intel IDF

April 9, 2024

After many years, Nvidia's GPU Technology Conference (GTC) was back in person and has become the conference for those who care about semiconductors and AI. I Read more…

Google Announces Homegrown ARM-based CPUs 

April 9, 2024

Google sprang a surprise at the ongoing Google Next Cloud conference by introducing its own ARM-based CPU called Axion, which will be offered to customers in it Read more…

Nvidia H100: Are 550,000 GPUs Enough for This Year?

August 17, 2023

The GPU Squeeze continues to place a premium on Nvidia H100 GPUs. In a recent Financial Times article, Nvidia reports that it expects to ship 550,000 of its lat Read more…

Synopsys Eats Ansys: Does HPC Get Indigestion?

February 8, 2024

Recently, it was announced that Synopsys is buying HPC tool developer Ansys. Started in Pittsburgh, Pa., in 1970 as Swanson Analysis Systems, Inc. (SASI) by John Swanson (and eventually renamed), Ansys serves the CAE (Computer Aided Engineering)/multiphysics engineering simulation market. Read more…

Intel’s Server and PC Chip Development Will Blur After 2025

January 15, 2024

Intel's dealing with much more than chip rivals breathing down its neck; it is simultaneously integrating a bevy of new technologies such as chiplets, artificia Read more…

Choosing the Right GPU for LLM Inference and Training

December 11, 2023

Accelerating the training and inference processes of deep learning models is crucial for unleashing their true potential and NVIDIA GPUs have emerged as a game- Read more…

Baidu Exits Quantum, Closely Following Alibaba’s Earlier Move

January 5, 2024

Reuters reported this week that Baidu, China’s giant e-commerce and services provider, is exiting the quantum computing development arena. Reuters reported � Read more…

Comparing NVIDIA A100 and NVIDIA L40S: Which GPU is Ideal for AI and Graphics-Intensive Workloads?

October 30, 2023

With long lead times for the NVIDIA H100 and A100 GPUs, many organizations are looking at the new NVIDIA L40S GPU, which it’s a new GPU optimized for AI and g Read more…

Shutterstock 1179408610

Google Addresses the Mysteries of Its Hypercomputer 

December 28, 2023

When Google launched its Hypercomputer earlier this month (December 2023), the first reaction was, "Say what?" It turns out that the Hypercomputer is Google's t Read more…

AMD MI3000A

How AMD May Get Across the CUDA Moat

October 5, 2023

When discussing GenAI, the term "GPU" almost always enters the conversation and the topic often moves toward performance and access. Interestingly, the word "GPU" is assumed to mean "Nvidia" products. (As an aside, the popular Nvidia hardware used in GenAI are not technically... Read more…

Leading Solution Providers

Contributors

Shutterstock 1606064203

Meta’s Zuckerberg Puts Its AI Future in the Hands of 600,000 GPUs

January 25, 2024

In under two minutes, Meta's CEO, Mark Zuckerberg, laid out the company's AI plans, which included a plan to build an artificial intelligence system with the eq Read more…

China Is All In on a RISC-V Future

January 8, 2024

The state of RISC-V in China was discussed in a recent report released by the Jamestown Foundation, a Washington, D.C.-based think tank. The report, entitled "E Read more…

Shutterstock 1285747942

AMD’s Horsepower-packed MI300X GPU Beats Nvidia’s Upcoming H200

December 7, 2023

AMD and Nvidia are locked in an AI performance battle – much like the gaming GPU performance clash the companies have waged for decades. AMD has claimed it Read more…

DoD Takes a Long View of Quantum Computing

December 19, 2023

Given the large sums tied to expensive weapon systems – think $100-million-plus per F-35 fighter – it’s easy to forget the U.S. Department of Defense is a Read more…

Nvidia’s New Blackwell GPU Can Train AI Models with Trillions of Parameters

March 18, 2024

Nvidia's latest and fastest GPU, codenamed Blackwell, is here and will underpin the company's AI plans this year. The chip offers performance improvements from Read more…

Eyes on the Quantum Prize – D-Wave Says its Time is Now

January 30, 2024

Early quantum computing pioneer D-Wave again asserted – that at least for D-Wave – the commercial quantum era has begun. Speaking at its first in-person Ana Read more…

GenAI Having Major Impact on Data Culture, Survey Says

February 21, 2024

While 2023 was the year of GenAI, the adoption rates for GenAI did not match expectations. Most organizations are continuing to invest in GenAI but are yet to Read more…

The GenAI Datacenter Squeeze Is Here

February 1, 2024

The immediate effect of the GenAI GPU Squeeze was to reduce availability, either direct purchase or cloud access, increase cost, and push demand through the roof. A secondary issue has been developing over the last several years. Even though your organization secured several racks... Read more…

  • arrow
  • Click Here for More Headlines
  • arrow
HPCwire