ASPEED Exec Teaches Lesson in Grid-Enablement

By By Derrick Harris, Editor

May 30, 2005

In this interview, Kurt Ziegler, ASPEED Software's executive vice president of marketing and product management, speaks with GRIDtoday editor Derrick Harris about Ziegler's recent whitepaper, “Designing Distributed Parallel
Programs for Performance,” and about the Grid market in general — especially from ASPEED's position as a provider of application acceleration software.



GRIDtoday:
How long have you been at ASPEED?

KURT ZIEGLER: I have worked with ASPEED since July 2004.

Gt: What is your background in Grid computing?

ZIEGLER: I have worked with distributed computing since the late '70s. I have had a book, “Distributed Computing and the Mainframe,” published by John Wiley & Sons in 1991 and numerous papers on distributed systems implementations published dating back to the late '70s, and I have worked with various Grid approaches and implementations since early 2000.

Gt: From ASPEED's perspective, how does the Grid market look?

ZIEGLER: It is very exciting. The biggest challenge to more rapid acceptance is that the applications need to be “touched” with varying degrees of skill and re-engineering effort.

Gt: What factors are driving business?

ZIEGLER: The business is being driven by the need for more runs, shorter run times, more transactions, faster response times and the need for more voluminous input — doing this all at significantly lower cost points.

Gt: What obstacles need to be overcome?

ZIEGLER: The primary obstacles are: knowledge/comfort level with the applicable technologies/approaches; concern about the skills and time required to adapt existing applications to Grid environments; and concern that adapting to the Grid for complex applications will require major re-engineering and involve rethinking the application flow and potentially changing computational results.

Gt: How do you think the market looks for Grid computing overall?

ZIEGLER: The market continues to grow, bolstered by the business demand for capacity and the underlying economic pressures. More and more successful pilot efforts are completing. I see 2005 as a major turning point driven by the collision of more pervasive acceptance of Linux, cluster and commodity systems computing, as well as the emergence of higher level tools to adapt and manage the distributed applications.

Gt: I see ASPEED is a member of the GGF. What kind of work have you done with them as a result of that membership?

ZIEGLER: Our participation was more as an observer; we offer feedback when asked since the GGF focus on more on the infrastructure components that the application per se.

Gt: Has ASPEED given any though to becoming a member of the EGA? Why or why not?

ZIEGLER: I track the results of the standards, but our focus is more on the application and masking the aspects of distribution. Our emphasis is to provide a sufficiently high application interface that, once included in the application, will leverage the underlying infrastructure. Obviously, the more companies that embrace the standards, the easier it is for us since we must support a plethora of infrastructures today.

If there were a “Distributable Applications” group, I would be very interested in participating. The reason I used the word “distributable” rather “distributed” is that, ideally, the application should be designed to run equally as well in a single CPU, n-way CPU system or distributed across and cluster or Grid. The value adds of such a focus on the API and services would be to ensure that the application receives optimum performance based on the configuration specifics and the run time consumption choices. I like to refer to such an approach as “future-proofing.” The biggest challenge is that the solution should not require application re-write or re-engineering.

Gt: So much of the negative reaction to Grid seems to center around its perceived complexity and the difficulty of Grid-enabling applications. Yet, ASPEED's recent whitepaper discusses how companies can “quickly upgrade” existing apps. How is this possible? Why all the confusion over upgrading, or Grid-enabling, applications?

ZIEGLER: Yes, the challenge is Grid-enabling applications if you don't use the right tools. ASPEED provides a high level application program API, and the tools to prepare the application for distribution and the run time library that enables a programmer to either annotate (sometimes referred to as “instrument”) the source code or wrap a binary. The first piece of the solution is that that program is not functionally re-engineered; it is simply annotated to identify the parallelizable portion(s) of it that are to be run across multiple CPUs or systems. The decision of many copies to run is made when the program is launched. The run time libraries take care of the data movement and range distribution among the allocated copies. This is done dynamically and adaptively to balance the completion times of the executing copies. The ASPEED run time functionality also detects stalls or environmental failures and seamlessly redistributes the work.

In other words, the ASPEED ACCELLERANT run time software has taken care of all the very tedious functionality, data serialization, unserialization, bringing up the required copies, chunking and coordination required without involving the programmer. Because this is all masked from the application, the application retains its original shape.

What I mean here is that the application is neither sliced up into functional components, which are subsequently scheduled, nor are any distribution mechanics added to the application logic. Instead, the entire application is scheduled across multiple workers and the ASPEED ACCELLERANT runtime functionality passes the flows to the appropriate portions of the distributed copies and coordinates the progress of the while they are executing. What this means is that the only special considerations that application programmers must concern themselves with are to identify the loops to be parallelized to the ACCELLERANT pre-processor — this is what I referred to as “annotation.” One would simply apply the API syntax around the code to be parallelized. The pre-processor would identify the effected data and insert the appropriate includes to provide the distributed functionality. The resultant-linked ACCELLERATED code can then easily be launched on a Grid fabric or simply run across multiple systems without Grid infrastructure software.

If that sounded too simple, it is because it is. There is more than a simple API and pre-processor needed to effectively parallelize some loops. This is why there is so much confusion about what can be parallelized and what can't be easily parallelized. For example, a Monte Carlo algorithm lends itself to be split across numerous copies because each iteration is independent. But what happens if the algorithm has a non-linear relationship or geometric relationship? Lets take the geometric algorithm first. The problem with atomizing or transactionalizing it is that as the number of branches expands so does the number of resources and then network chatter leading to terrible performance characteristics. ASPEED offers a breakthrough in dealing with this and other tough algorithms. ACCELLERANT includes algorithm-aware APIs that treat the distribution and flows differently based on the algorithm and the input characteristics. This enables many applications that were labeled undistributable to be parallelized to use the Grid.

Gt: Speaking of the whitepaper, it also discusses the “six myths” of multi- processing programs. Can you speak a little about some of the major myths and why they still exist?

ZIEGLER: The five-second answer is that many of the practitioners are coming into this space without having the benefits of experience or having suffered through the consequences of some of the design decisions. There is really not much new conceptually, but there is very little advice available. This is what prompted me to write the white paper in hopes of helping some folks skip the land mines, or at least know the options as they build or adapt or re-engineer applications to run on a Grid.

The longer winded answer …

The real reason such myths continue is because they are sometimes validated. For example, if you have a very bright and highly skilled programmer, it is quite possible to gather a collection of tools and middleware and compilers and, in a relatively short time, create a distributed application that meets the performance design points. The problem, however, is that the more optimum the solution, the greater the likelihood that very low level interfaces, specific target system and input specific criteria were used for the implementation. The result is that you now have a distributed application that is sensitive to change, is dependent on a very skilled individual to maintain, and typically doesn't include failure or recovery services. The best way to detect myths is with some targeted questions if we do this (the list is not in any specific order):

  • What skill is required to maintain the code? Multithreading is not easy.
  • Is the resultant performance predictable? Can you model and capacity plan for the resultant run time?
  • Is the solution portable across operating systems (e.g., Windows, Linux, UNIX)?
  • Is the solution dependent on specific data inputs? Does it scale? What happens if the user or business changes some input?
  • Is the solution dependent on a specific configuration (i.e. memory, shared memory, etc.)?
  • Is the solution dependent on a specific proximity (e.g., connectivity, can it be distributed geographically)?
  • Can additional functionality be added without major surgery or unique skills?

Gt: What industry sectors (e.g., financial services, pharma, manufacturing, etc.) does ASPEED do the most business with?

ZIEGLER: We started in the financial services sector because that is where one of our founders came up with the idea of adapting applications rather than re- engineering them. Since then, we are doing business in the pharma area, where we have parallelized some non-linear models which were heretofore unparallelizable, at least at the fine-grain level, and in the government sector where we see conditioning the calculation dynamically and then balancing it promises to provide much better scalability than the hard-coded MPI-based models. We are also starting to see engineering applications dealing with sparse matrices, etc.

Gt: Are there any sectors that you see as being ahead of the curve in regard to developing Grid apps, or Grid adoption in general? Are there any sectors that you see lagging behind?

ZIEGLER: This is an excellent question. But it appears to me that the challenge (lagging) is more of a horizontal than vertical. What I mean by that is that certain portions of the business could leverage Grid/cluster technologies while others portions can't see how their applications apply. For example, in the financial services area, modeling, simulation and analysis while being the best candidates, are slow to move because re-engineering the model means significant re-investment in validation of the results. This is why ASPEED's design point was not to require any change to the calculations or the program flow. This concern about validation is even more prevalent in the pharma space, where hundreds of runs are required to validate the results prior to submitting a drug to the FDA. Applications like payroll, which calculate individual payments and deductions, are rather simple to parallelize because the individual calculations are independent and the results are easily matched to parallel runs. I think that the challenge to adoption is that the notion of spreading applications across the enterprise's computers is being looked at as an “all or nothing” proposition by some.

Having said that, I see another consideration that is probably even a bigger factor that often gets overlooked: elapsed time, run time or response time. When applications are parallelized intuitively, the time to run the application is potentially greatly reduced and the workload can be spread to smaller systems, even idle desktops. The problem is what happens when one of the parallel pieces of the application is stuck behind other components. The law of large numbers says that this won't be a problem given enough participating systems. Unfortunately, during pilots, the number of available processors is finite and tends to belong to a population in the same time zone doing the same work. If this is the case, the resultant workload utilization be very appealing but the elapsed times of some time critical jobs may suffer. This leads to dedicated clusters rather than Grid solutions as the first step. ASPEED helps this situation in that once the workers are allocated, the application is managed to optimum completion time eliminating any one stuck process from holding up the timely completion.

Gt: Finally, there has been a lot of talk lately of Grid computing being overhyped, and I'm wondering where you, as a vendor representative, stand on this? If the technology is as world-changing as many vendors would have us believe, why are companies not jumping on board en masse?

ZIEGLER: I think I have answered some of this question in my earlier commentary: I believe that the dramatic change that Grid computing offers in terms of:

  • enabling businesses to do things they couldn't do in terms of enabling applications that couldn't run on a single systems because of prohibitive cost and physical constrains.
  • the potential to more effectively exploit the existing capacity.
  • the ability to use less expensive commodity hardware and open operating systems.
  • the ability to leverage the Grid to achieve predictable response time reductions are real.

The realization is a function of the applications that can effectively exploit the Grid infrastructure. The challenge here is that I think that from both a vendor and IT standpoint, the ideal solution would be bottom-up and, unfortunately, it isn't that easy. By bottom-up, I mean an easy knob or appliance that could be applied as an operating system or configuration additive to magically distribute the workload and be sensitive to the response-time implications and the result consequences. The fact of the matter is that some applications can very easily be distributed with a little effort and sometimes even auto-magically, but the second reality is that there are many more business critical applications with extensive programming and testing investments which require changes to the application itself. ASPEED has embraced this challenge and has developed a methodology, best practices and software that bring the ideals closer together by providing a way to adapt the tougher to distribute applications. Our initial focus has been on the computationally intensive applications and this focus in now extending to work with data management vendors.

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!

Quantinuum Reports 99.9% 2-Qubit Gate Fidelity, Caps Eventful 2 Months

April 16, 2024

March and April have been good months for Quantinuum, which today released a blog announcing the ion trap quantum computer specialist has achieved a 99.9% (three nines) two-qubit gate fidelity on its H1 system. The lates Read more…

Mystery Solved: Intel’s Former HPC Chief Now Running Software Engineering Group 

April 15, 2024

Last year, Jeff McVeigh, Intel's readily available leader of the high-performance computing group, suddenly went silent, with no interviews granted or appearances at press conferences.  It led to questions -- what's 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 Institute for Human-Centered AI (HAI) put out a yearly report to t Read more…

Crossing the Quantum Threshold: The Path to 10,000 Qubits

April 15, 2024

Editor’s Note: Why do qubit count and quality matter? What’s the difference between physical qubits and logical qubits? Quantum computer vendors toss these terms and numbers around as indicators of the strengths of t 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 are available off the shelf, a concern raised at many recent 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  — announced its second fund targeting €200 million. The very idea th 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…

Computational Chemistry Needs To Be Sustainable, Too

April 8, 2024

A diverse group of computational chemists is encouraging the research community to embrace a sustainable software ecosystem. That's the message behind a recent Read more…

Hyperion Research: Eleven HPC Predictions for 2024

April 4, 2024

HPCwire is happy to announce a new series with Hyperion Research  - a fact-based market research firm focusing on the HPC market. In addition to providing mark Read more…

Google Making Major Changes in AI Operations to Pull in Cash from Gemini

April 4, 2024

Over the last week, Google has made some under-the-radar changes, including appointing a new leader for AI development, which suggests the company is taking its 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…

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…

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…

Leading Solution Providers

Contributors

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…

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…

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