Letter to the Editor: Benchmarking Buzz

By Nicole Hemsoth

June 12, 2008

Readers add their opinions on an article by Dr. Bob Panoff last week in HPCwire [http://news.taborcommunications.com/msgget.jsp?mid=363815&xsl=story.xsl].  Dr. Panoff responds to the comments as well.


Editor,

The April 8 edition of HPCWire carried two items I found interesting when considered as part of a larger benchmarking issue. The first regarding a new supercomputer said, in part, “HP announced that the U.S. Department of Energy's new state-of-the art research supercomputer has completed a two-year acceptance process by the agency's Pacific Northwest National Laboratory (PNNL).” Another said, in part, “What our students are learning, however, just from these three examples, is that the measurement of “high performance” is highly contextual, and the same machine configuration and assumptions for one exemplar completely break down for the others.”

Students should be made aware that a “two-year acceptance process” is not the ideal for most HPC shops (a Government agency can't pay their vendor until a system passes “Acceptance”) and that benchmark codes should not only be comprehensive in their performance assessment but also inexpensive to run. Nothing in Dr. Panoff's article implied that students' work would lead to excessive benchmarking procedures but there was no mention of the economics of the benchmarking process. The HPC world is nothing if not competitive.

Gary Wohl
NOAA, National Weather Service

———-

Hello,

I just read the article on HPCwire which mentions the homework parallel applications you assign to your students, and I have a few of comments:

– All the applications you mention have a large Compute to Communicate ratio. Even the N-body problem, when N is large enough, becomes communication friendly. This is not always the case, and I see application kernels where the ratio is almost constant. For example when using spectral methods, the FFT computation requires to transpose the whole dataset, communication is O(N) while computation is O(N.log(N)). I believe a transposition of a distributed 2D array is a good simple illustration.

– The only thing embarassing about the Embarassingly Parallel applications is that they do not parallelize …always that well, e.g. ray tracing. Ray tracing is often mentioned in the EP category, but when the work/pixel ratio is not uniform it raises some interesting load-balancing problems. Often, when considering ray tracing as EP, one implicitely assumes that the database has been replicated on each thread. Now consider a model dynamically changing… And what if the model is so large that each thread holds only a portion of it ?

– Also, I am surprised you mention the master-slave model for parallel programming. I did not think anybody would consider this approach anymore. My experience is that, as you increase the number of threads, the “master” becomes a serious bottleneck, all the “slaves” spin-waiting for it. Free the slaves, get rid of the masters 😉

– Finally, you seem to consider only a cluster architecture, there are large shared-memory systems available, and the applications will look different (better I think) on SMP architecture.

best regards

Jean-Pierre Panziera Principal Engineer, Silicon Graphics Inc.

———-

First, I agree with many of your comments, and appreciate the time you took to reply.

I only considered the cluster examples since I was commenting in large part on the continuing spate of efforts to define HPC in terms of clusters and the Grid. From my perspective, the shared-memory architecture has proven to be more productive in the main over the years and look forward to those machines competing for more attention. I am actually a holder of one of the early Cray Gigaflop awards. . .I had forgotten about that whole effort of the Gigaflop awards in putting together my thoughts, but perhaps my subconscious was trying to remind me. Perhaps my article was really a cry to return to those good old days when vendors welcomed the challenge to have their machines pushed to the limits by real codes,

As for the set of examples I gave, my listing was part of the challenge: as I wrote in the piece, I wanted to solicit from the community a richer set of examples than those we are using now. The only way to define “richer” was to expose what we are using now, so folks will send in their better examples. From some of the mail I received, I think I succeeded in stirring the pot a bit.

Lastly, the compute to communication ration is not large for N-body problems unless one switches algorithms as N gets large. For a direct force calculation, the exchange of data between processors dwarfs the computation time as N gets large. Again, this has been kept as a simple example for pedagogical reasons.

With best wishes,

Bob Panoff

———-

Thanks for your answer,

I appreciate what you are saying about shared memory architectures and as you know we (SGI) provide such systems with hundreds of procs.

Regarding the N-body problem, let me explain why I believe it becomes communication friendly as N increases when using the direct force calculation. Consider P threads, each thread “owns” M bodies, M=N/P, the M forces you need to compute involve M*(N-1) elementary contributions, that is N^2/P. Each thread receives the data for the N*(P-1)/P bodies owned by the (P-1) other threads. Thus, for a given thread, the compute/communicate ratio is O(N). You can add one level of sophistication using the reciprocity principle (action/reaction). You're then halving the computation and need to send back the force contribution, doubling the communications. Overall this divides by 4 the compute/communicate ratio which still remains O(N). The favorable Compute/Communicate ratio makes this kind of computation a good candidate for clusters and FPGAs.

I might have misunderstood what you are doing since I do not see how it is possible that “the exchange of data between processors dwarfs the computation time as N gets large.”

Best regards,

Jean-Pierre Panziera, SGI

———-

Dear Dr. Panoff,

The following comments are not claimed to represent the views of SAIC or those of its customers.

Many thanks for your recent excellent note in HPCWire ([1]) on practical performance analysis and tuning.

As a computational performance analysis and tuning professional, everything you said rang true to me. I was particularly impressed with the emphasis you put on the end-to-end systems engineering context.

Here are some distillations that have continued to inform my reasoning about performance.

1. The production hydrodynamics codes on which I worked typically use ~1% of peak. In the load-store architectures on which these codes ran (clusters of SGI Origin 2000, SGI Origin 3000, Compaq Alpha, IBM SP2, and commodity- and custom-Intel units), the processors were data-starved because memory-to-register transfers took at least 10 times as long as it took to operate on a datum, once that datum was in a register. 10% of peak is therefore the best attainable performance on codes that have to move data to and from general memory; performance is all downhill from there. Until this problem is solved in hardware, 10% of peak will remain usable peak.

2. Real codes rarely scale on tree-structured networks.

3. The performance of real codes, including the performance of at least one well known Monte Carlo code, is often enough sensitive to problem type, not just problem size.

4. Platform architecture matters deeply, but the syntax and semantics of high-level languages badly underdetermines the structure and dynamics of the machine codes on these platforms.

5. Anyone can implement an inefficient data structure that can outwit even the smartest compiler optimization.

6. Once a legacy code grows to more than about 50,000 source lines of code, it becomes institutionally impossible to get the resources to restructure it for performance, no matter how poor the code is admitted to be.

7. In any sufficiently large cluster, hardware is free (compared to the cost of the labor lost in trying to use it efficiently).

8. There is no substitute for hardware-level performance monitoring tools, but most vendors provide little to no support for it.

9. “Linux” is the name of at least 10 *different* operating systems, each with its own performance trades.

10. Optimizing performance by altering process management on a platform is the beginning of a re-design of the operating system. At the end of that effort, you will know less than you need to about operating systems, and if you're exceptionally lucky, your code will run no slower than it did when you started.

For several years, I taught a performance analysis and tuning recipe in various parallel computing workshops. Although the recipe worked if followed, I found it was all but impossible to get the code developers (typically physicists with no software engineering background) to adopt it.

Jack

[1] R. Panoff. Benching the Benchmarks: Measuring Performance in HPC … HPCWire M363815.

Jack K. Horner SAIC P. O. Box 3827 Santa Fe, NM 87501 Voice: 505-455-3804 Fax: 505-455-0382 email: [email protected]


Have comments on an HPCwire article?  Please direct comments/questions to HPCwire editor Tim Curns at [email protected].

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!

AI Saves the Planet this Earth Day

April 22, 2024

Earth Day was originally conceived as a day of reflection. Our planet’s life-sustaining properties are unlike any other celestial body that we’ve observed, and this day of contemplation is meant to provide all of us Read more…

Intel Announces Hala Point – World’s Largest Neuromorphic System for Sustainable AI

April 22, 2024

As we find ourselves on the brink of a technological revolution, the need for efficient and sustainable computing solutions has never been more critical.  A computer system that can mimic the way humans process and s Read more…

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…

AI Saves the Planet this Earth Day

April 22, 2024

Earth Day was originally conceived as a day of reflection. Our planet’s life-sustaining properties are unlike any other celestial body that we’ve observed, 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…

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…

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…

Intel’s Xeon General Manager Talks about Server Chips 

January 2, 2024

Intel is talking data-center growth and is done digging graves for its dead enterprise products, including GPUs, storage, and networking products, which fell to Read more…

  • arrow
  • Click Here for More Headlines
  • arrow
HPCwire