This seven-part, quick-read workshop series is taken from the real-world case study whitepaper, "Porting Financial Markets Applications to the Cell Broadband Engine Architecture" (written by John Easton, Ingo Meents, Olaf Stephan, Horst Zisgen, and Sei Kato, IBM Systems and Technology Group, June 2007; see Resources). You can probably spend less than 10 minutes reading each installment and come out at the end with a strong basic knowledge of the requirements for effectively porting a compute-intensive application (in this case, a financial market application) to the Cell/B.E. processor.
Editor's note: The performance results in this series were obtained using Versions 1 and 2.1 of the Cell Broadband Engine Software Developer Kit (SDK). The current version of the SDK, the IBM Software Development Kit for Multicore Acceleration, Version 3.0, has recently become available and offers many enhancements in functionality, ease of use, and performance over the earlier versions. While the results documented in this article are correct for the earlier versions of the SDK, different results will be obtained with SDK 3.0. Watch for updates to the articles in this series that will describe the latest performance improvements obtained using SDK 3.0.
The example application modified in this article is a piece of code used to price a European Option to highlight the benefits of the Cell/B.E. blade. A European Option is a simple financial contract with strict terms and properties that gives the buyer the right to trade a given asset at a specific price on a specific date. It is generally an option that can be exercised only at the end of its life. By contrast, an American Option can be traded at any time between its purchase date and the date at which the contract expires. Because a European Option is traded on a fixed date, it is a simpler calculation to perform because the time variability of the American Option is removed.
You can use several different models price a European Option, depending on the type of asset that underlies it. For example, an option based on currency is calculated using a slightly different model than an option based on futures. In the example described in this series, the calculation is based on a simple Monte Carlo simulation technique. You will generate 200,000,000 uniform, pseudo-random numbers. These numbers are transformed to a log-normal distribution using a Box-Müller transform. Using the random numbers generated, you will execute the financial model repeatedly to simulate a random walk. The final stage of the analysis will be the calculation of the relevant statistics, such as the minimum, maximum, and average and the 95 percent quartile for losses.
Evaluating mixed-precision workloads
Given that the current implementation of the Cell/B.E. platform has limited double-precision floating point capabilities, there is a lot of interest in the work done by Kurzak and Dongarra (see "Implementation of a Mixed-Precision in Solving Systems of Linear Equations on the CELL Processor" in Resources) on mixed-precision calculations on the Cell/B.E. platform. In their paper, an approximate solution to a system of linear equations is generated using single-precision arithmetic. This solution is then plugged into the equation, and the delta is computed. Then a second iteration using double-precision arithmetic is started, based on the delta.
This approach cannot be mapped directly to the problem of pricing European Options using a Monte Carlo method, but you can do something similar by generating 32-bit (single-precision) random numbers and using these for the double-precision cases. In essence, rather than performing all of the calculations exclusively using single- or double-precision, only those parts of the calculation that actually need double-precision are calculated using double-precision. This increases the programming effort needed slightly: first, to identify which parts of the code should use which sort of precision and, second, to make the appropriate changes to the code. But it also delivers a substantial performance improvement due to the outstanding single-precision performance of the chip.
We recently investigated a couple of potential uses of this mixed-precision technique for the European Option pricing code. In both cases, the pricing of the European Option is still performed using double-precision arithmetic. The Mersenne-Twister random-number generator is where we applied the mixed-precision mathematics.
In the first case, a double-precision random variant is generated by concatenating two single-precision random variables. In the second case, the double-precision variant is formed by generating one single-precision random variable and then turning it into a double-precision random variable by doing a double-precision division. The second case requires generating half the number of random numbers (200,000,000) compared to the first case (400,000,000), but the second case does require additional double-precision arithmetic. The determining factor here is whether the doubling of the single-precision mathematical component in the first case is offset by the double-precision activities in the second case.
See Table 6 for an example. (Tables and figures are numbered consecutively throughout the series to match the versions in the original whitepaper.)
Table 6. Performance by number of SPUs (different precision types)
| # SPU | CC_DP_MT | CC_DP_SDK | M_DP_MT | SP_MT | SP_SDK |
|---|---|---|---|---|---|
| 1 | 40.33 | 40.33 | 45.76 | 12.01 | 11.16 |
| 2 | 20.33 | 20.33 | 22.88 | 6.06 | 5.70 |
| 3 | 13.56 | 13.56 | 15.26 | 4.05 | 3.80 |
| 4 | 10.17 | 10.17 | 11.44 | 3.04 | 2.85 |
| 5 | 8.13 | 8.13 | 9.16 | 2.43 | 2.29 |
| 6 | 6.78 | 6.78 | 7.64 | 2.03 | 1.91 |
| 7 | 5.82 | 5.82 | 6.55 | 1.75 | 1.64 |
| 8 | 5.09 | 5.09 | 5.75 | 1.53 | 1.44 |
| 9 | 4.53 | 4.52 | 5.11 | 1.36 | 1.28 |
| 10 | 4.08 | 4.08 | 4.60 | 1.22 | 1.15 |
| 11 | 3.70 | 3.70 | 4.18 | 1.11 | 1.05 |
| 12 | 3.40 | 3.39 | 3.84 | 1.02 | 0.96 |
| 13 | 3.14 | 3.14 | 3.54 | 0.94 | 0.89 |
| 14 | 2.92 | 2.92 | 3.29 | 0.88 | 0.83 |
| 15 | 2.72 | 2.72 | 3.07 | 0.82 | 0.78 |
| 16 | 2.55 | 2.56 | 2.88 | 0.77 | 0.73 |
Table 6 shows the results in which:
- CC_DP_MT = Concatenation Double-Precision Mersenne-Twister
- CC_DP_SDK = Concatenation Double-Precision SDK
- M_DP_MT = Division Double-Precision Mersenne-Twister
- SP_MT = Single-Precision Mersenne-Twister
- SP_SDK = Single-Precision SDK
Figure 4 shows the results.
Figure 4. Plot of the different precision runtimes against the number of SPUs

Because we completed the various optimizations over a number of months, many things changed, so unfortunately, we cannot make a direct comparison between these mixed-precision numbers and those described in earlier experiments. In Part 4, you could see a factor-of-four improvement of the Mersenne-Twister random-number generator over the SDK-supplied one. After that, the optimized code in the SDK changed significantly with the way that vectorized random-number generation is performed. The rejection method is further causing uncertainty due to the scalar nature of that process and the randomness involved.
The SDK also changed considerably. The original porting of the code was performed using SDK 1.0. The current release is SDK 2.1. We observed that running the binaries on a QS20 blade running SDK 2.1 was approximately twice as fast as running the same binaries on a QS20 running SDK 2.0. For a proper comparison, the firmware and kernel versions should also be taken into consideration, but this shows the continuing advances being made in terms of the SDK and its performance. The following table shows examples of the speedup between SDK 2.0 and SDK 2.1:
| SDK | CC_DP_SDK | SP_MT | M_DP_MT |
|---|---|---|---|
| 2.0 | 7.83s | 2.04 | 5.71 |
| 2.1 | 3.94s | 1.04 | 2.88 |
We've since used some additional optimization techniques to improve performance even further. These techniques include:
- Unrolling more parts of the Mersenne-Twister random-number generator
function that generates 32-bit unsigned integers.
- Adding additional software pipelining by parallelizing computation and
data loads into the two pipes of the SPE's execution unit.
- Pre-calculating items, such as:
a[0]=<something>; for (i=0;i<N;i++) { sinf4(a[0]) ; sinf4(a[i+1)); ...... }
Precalculating items reduces the runtime and enables the compiler to make a better job of optimizing the code. - Introducing new variables to eliminate dependencies and allow the compiler to make better use of the two pipelines.
This demonstrates that you can use the outstanding single precision capabilities of the Cell/B.E. environment to outweigh the constraints of the limited double-precision performance of the current Cell/B.E. processor implementation.
Many other individuals contributed (both knowingly and unknowingly) to this piece of work. The authors wish to acknowledge their kind contributions. Without this assistance, this paper would never have been written.
Learn
- Use an RSS
feed to request notification for the upcoming articles in this series. (Find out more about RSS feeds of developerWorks content.)
- Check out the original whitepaper,
"Porting Financial Markets Applications to the Cell Broadband Engine Architecture"
(alphaWorks, June 2007). The original whitepaper combines
the contents of this entire series. It also
provides a tidy introduction to the Cell/B.E. architecture, and it explains why the
processor is important, especially for compute-intensive financial market
applications.
- See
"Introduction to the Cell Multiprocessor"
(IBM Journal of Research and Development, 2005) for an introductory
overview of the Cell/B.E. multiprocessor's history, the program objectives and
challenges, the design concept, the architecture and programming models, and the
implementation.
- Go to "Porting practices: Compute-intensive applications"
(developerWorks, June 2007) for help bringing a compute-intensive
application to the Cell/B.E. architecture.
- Read "Tech tips: SPU vector intrinsics at your fingertips"
(developerWorks, May 2007) for a handy list to keep you on the right side of common
Cell/B.E. SPU vector intrinsics. This article was extracted from a longer article,
"Programming high-performance applications on the Cell BE processor, Part 5").
- Review "Cell Broadband Engine Architecture and its first implementation"
(developerWorks, November 2005) for an up-close look at the performance
figures and characteristics of the first implementation.
- Explore the
QuantLib project, which is a free/open-source library
written in C++ with a clean object model for modeling, trading, and risk
management in real-life. It is exported to different languages such as C#,
Objective Caml, Java™, Perl, Python, GNU R, Ruby, and Scheme.
- Learn more about the
Mersenne-Twister.
It is a very fast, pseudo-random number-generating algorithm that uses memory very
efficiently. The algorithm has a far longer period and far higher order of
equidistribution than any other implemented generator.
- Refer to
"Implementation of a Mixed-Precision in Solving Systems of Linear Equations on the CELL Processor"
for details on the implementation of code to solve a linear system of equations
using Gaussian elimination in single precision with iterative refinement of the
solution to the full double-precision accuracy.
- Bring up the
Software Development Kit 2.1 Installation Guide Version 2.1
(PDF) to walk through installation, configuration, and many of the basics that
you need to know to get started with development. Two companion pieces,
"Cell/B.E. SDK 2.1: Setting up Fedora Core 6"
and
"Cell/B.E. SDK 2.1: Understanding the terminology"
(developerWorks, April 2007), can help you get the requisite FC6 up and running,
and they provide a quick reference to Cell/B.E. terminology.
- To learn more on Cell/B.E. programming, try the
developerWorks series:
- "Programming high-performance applications on the Cell/B.E. processor"
- "PS3 fab-to-lab"
- "The little broadband engine that could"
- Refer to the Cell
Broadband Engine documentation section of the IBM Semiconductor Solutions Technical Library for a wealth of downloadable manuals,
specifications, and more.
- Sign up for the developerWorks newsletter
and get the latest developer news and Cell/B.E. happenings delivered to your inbox each week.
Check Power Architecture when you sign up to receive Cell/B.E. news in your newsletter.
Get products and technologies
- Get the
OpenMP API to learn about a portable, scalable model
that gives shared-memory parallel programmers a simple and flexible interface for
developing parallel applications. The API supports multi-platform, shared-memory parallel
programming in C, C++, and FORTRAN on all architectures, including UNIX® and Windows
NT® platforms.
- Find the centerpiece
of Cell/B.E. development at
latest Cell/B.E. SDK release, version 2.1.
- Locate the
IBM XLC compiler for
porting efforts. It is optimized for the Cell/B.E. processor.
- Find all Cell/B.E.-related articles, discussion forums, downloads,
and more at the IBM developerWorks Cell
Broadband Engine resource center: your definitive resource for all
things Cell/B.E.
- Contact IBM about custom
Cell/B.E.-based or custom-processor based solutions.
Discuss
- Participate in the discussion forum.
- Check out the Cell Broadband
Engine Architecture forum to get your technical questions about the processor answered.
Juicy problems and answers from the forums are rounded up periodically and highlighted
in the "Forum watch" blog series.
- Go to the Power Architecture blog for news, downloads,
instructional resources, and event notifications for Cell/B.E. and other Power Architecture-related technologies. You can find
the popular "Forum watch" blog series (Q&A roundup) and the "FixIt" technology updates.
John is currently leading a worldwide emerging technologies team within IBM Systems and Technology Group. He has several roles competing for his time, all of which revolve around advising organizations on how best to exploit new technologies. John has been working for IBM for over 20 years in a variety of technical roles. He worked in Distributed Systems Development in Austin before the launch of the RS/6000, and he holds several patents in the areas of security and systems software. Before taking his current role, he was the European technical leader for grid computing.
Ingo Meents joined IBM nine years ago and works currently as an IT Architect in IBM Global Engineering Solutions (GES). His current focus is to provide IBM customers with knowledge of the latest Cell/B.E. software technology by consulting, educating, briefing, and creating solutions for this platform. Before his work on the Cell/B.E. platform, he was lead architect for a modeling, simulation, and production planning solution used by the IBM 300mm semiconductor line in Fishkill. Starting as a research student at IBM, Ingo Meents received his doctor's degree from the University of Clausthal in 2001.
Olaf Stephan joined IBM in 1998 and currently works as an IT Specialist in IBM Global Engineering Solutions (GES). His focus is to provide IBM customers with knowledge of the latest Cell/B.E. software technology by consulting, educating, briefing, and development for this platform. Before his work on the Cell/B.E. platform, he worked in the areas of data management, data warehousing, business intelligence, and data integration. Olaf holds a Masters degree in Electrical Engineering, specializing in Communications Technology, from the University of Applied Sciences, Koblenz, Germany.
Horst has over 10 years of experience in the application of simulation methods and the development of mathematical models in different areas. He is currently leading a development team in IBM Global Engineering Solutions (GES) that is working on a simulation and planning solution used by IBM 300mm manufacturing in Fishkill and by external customers as well. Horst is also the European subject matter expert for the GES supply chain offerings. In addition, Horst regularly gives lectures at universities about simulation and mathematical modeling. Horst is a member of a standardization group for simulation and optimization.
Sei Kato is a staff member in IBM Research, Tokyo Research Laboratory. He joined IBM in 2002 after receiving his PhD in Mathematical Science from the University of Tokyo. After joining IBM, Sei has worked on modeling and simulating the performance of Web systems. His is currently working on the acceleration of financial calculations and on large-scale traffic simulations.
Comments (Undergoing maintenance)




