Skip to content

Samples for the latest Microsoft Press book on programming with C++AMP using Visual Studio 2012.

License

Notifications You must be signed in to change notification settings

AdeMiller/CppAmp

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

C++ AMP

Accelerated Massive Parallelism with Microsoft Visual C++
Kate Gregory and Ade Miller

Capitalize on the faster GPU processors in today’s computers with the C++ AMP code library—and bring massive parallelism to your project. With this practical book, experienced C++ developers will learn parallel programming fundamentals with C++ AMP through detailed examples, code snippets, and case studies. Learn the advantages of parallelism and get best practices for harnessing this library in your applications.

Discover how to:

  • Gain greater code performance using graphics processing units (GPUs)
  • Choose accelerators that enable you to write code for GPUs
  • Apply thread tiles, tile barriers, and tile static memory
  • Debug C++ AMP code with Microsoft Visual Studio®
  • Use profiling tools to track the performance of your code

Kate Gregory maintains a the book's homepage which contains updates, links and news of speaking engagements.

Get the Book

The book is now available for purchase, online and in good bookstores! You can read preview material on both the Amazon.com (paper and Kindle versions) and the O’Reilly web site (DRM free eBook, PDF and paper versions). You can also read it  through Safari Books online. The list prices; print $36.99, eBook $29.99, both $40.69.

If you like the book and want to write a review of it then Amazon.com is the place to do that.

Download the case studies and sample code for each chapter

The N-body case study shows how to use C++ AMP to get the most out of your GPU hardware in a computational application. It contains several implementations of the classic n-body problem that models particles moving under the influence of gravity. The code has implementations for simple and tiled C++ AMP kernels as well as an implementation that runs on more than one GPU. The accompanying CPU based sample also includes single and multi-core implementations of the same algorithm. The case study also shows the use of inter-op with DirectX to minimize the overhead of displaying your application’s results.

This N-body application is similar to the one written by the C++ AMP product team, it was originally based on the same source code. However, it includes several improvements and new features:

  • Updated code to use more of the modern C++11 programming idioms.
  • Added additional GPU implementations for multi-GPU.
  • An additional CPU application with SSE2 enabled implementations and a different algorithm that makes better use of the CPU's cache architecture. This allows fairer comparisons between CPU and GPU implementations.

The Cartoonizer case study demonstrates braided parallelism, using both the available cores on the CPU and any available GPU(s). It implements  color simplification and edge detection algorithms using C++ AMP and orchestrates the processing of images using the Parallel Patterns Library and Asynchronous Agents Library. Single accelerator implementations of simple, tiled and texture based algorithms are all shown. In addition, the case study also shows two approaches for dividing the cartoonizing workload up across more than one accelerator, either by splitting images into subsections or forking the pipeline and processing images on separate accelerators before multiplexing them back into the correct sequence.

The Reduction case study shows twelve different implementations of the reduce algorithm. Each implementation shows different approaches and the book discusses their performance characteristics and the trade-offs associated with each implementation. Reduction is an important data parallel operation so it is worth considering its implementation in some detail.

Finally all the code samples associated with the other chapters in the book can also be found here.

System Requirements

We recommend Visual Studio 2012 or 2013 Professional to run the samples. The DirectX SDK (June 2010) is also required on both Windows 7 & 8 to build the N-body case study and Chapter 11 samples. If the SDK fails to install with error code S1023 you have a more recent version of the VS 2010 redistributable installed. Uninstall the redistributable, then reinstall the SDK to resolve this issue. More details can be found here.

You can also use Visual Studio Express 2012 or 2013 for Windows Desktop to build and run some of the sample projects and case studies. The sample projects are classic style native applications so will not load in Visual Studio Express 2012 for Windows 8. VS Express does not support ATL or MFC so the samples and case studies that use MFC will not build; NBody and Cartoonizer.

Visualization Tools: You will need Visual Studio 2012 Ultimate to use some the parallel diagnostic tools such as the Concurrency Visualizer. You may also have to enable it for the Reduction project. Select the Analyze | Concurrency Visualizer | Add SDK to Project... menu item, then select the Reduction project and click Add SDK to Selected Project.

Debugger and WARP accelerator support: Debugging and WARP accelerator support is now available on Windows 7 with the Platform Update for Windows 7. In addition NVidia now supports hardware debugging. The following blog posts outline how to use these:

Additional Requirements for Visual Studio 2013

The existing Visual Studio 2012 projects and solution will automatically upgrade when opened in Visual Studio 2013. Simply accept the upgrade dialog and the solution will load.

Enabling Code Markers: If you are using Visual Studio 2013 and want to use the code markers feature in the Reduction case study then you will need to download and install the Concurrency Visualizer extension. The visualizer no longer ships as part of Visual Studio. Once you have installed the add-in enable it for the Reduction project. Select the Analyze | Concurrency Visualizer | Add SKD to Project... menu item, then select the Reduction project and click "Add SDK to Selected Project".

If you do not want to use this feature the simply remove the MARKERS macro definition at the top of the Reduction.cpp source file before compiling.

Demos and Talks

Ade Miller gave a talk at the NVidia GPU Technology Conference you can find the slide deck for this talk on his blog. If you attended GTC and missed the talk then a video of it is available on the GTC web site.

  • S3317 - An Overview of Accelerated Parallelism with C++ AMP

The source code for the examples in the talk are checked in to the Extras folder in the source tree.

Don McCrady (Development Lead for C++ AMP) and Jim Radigan (Architect on Windows C++) gave an excellent talk on performance programming with C++ and C++ AMP at //BUILD 2012. The C++ AMP material is towards the end.

Kate Gregory spoke at TechEd 2012. You can watch the talk here:

Daniel Moth gave two talks on C++ AMP at the GPU Technology Conference 2012. This included a showing the Cartoonizer case study.

There is also a shorter Channel 9 video, also by Daniel, that walks through the Cartoonizer application:

The C++ AMP team blogs frequently on the Parallel Programming in Native Code blog. Check there for new updates about C++ AMP and parallel programming in general. They also have a collection of samples that are very helpful for understanding how to implement solutions to specific problems in C++ AMP:

The Parallel Computing in C++ and Native Code forum on MSDN is good place to ask questions about C++ AMP.

About

Samples for the latest Microsoft Press book on programming with C++AMP using Visual Studio 2012.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published