C++ AMP (C++ Accelerated Massive Parallelism)
C++ AMP (C++ Accelerated Massive Parallelism) accelerates the execution of your C++ code by taking advantage of the data-parallel hardware that's commonly present as a graphics processing unit (GPU) on a discrete graphics card. The C++ AMP programming model includes support for multidimensional arrays, indexing, memory transfer, and tiling. It also includes a mathematical function library. You can use C++ AMP language extensions to control how data is moved from the CPU to the GPU and back.
Related Topics
Title |
Description |
---|---|
Describes the key features of C++ AMP and the mathematical library. |
|
Describes how to use lambda expressions, function objects, and restricted functions in calls to the parallel_for_each method. |
|
Describes how to use tiles to accelerate your C++ AMP code. |
|
Describes how to use accelerators to customize execution of your code on the GPU. |
|
Describes how to use C++ AMP in Windows Store apps that use Windows Runtime types. |
|
Describes how to use the C++ AMP graphics library. |
|
Demonstrates matrix multiplication using C++ AMP code and tiling. |
|
Explains how to create and debug an application that uses parallel reduction to sum up a large array of integers. |
Reference
Other Resources
Parallel Programming in Native Code Blog