C++ AMP
C++ AMP是微軟公司基於DirectX 11技術實現的一個並行計算庫。它建立在C++的語言規範上,使得程式設計師可以相對容易地在數據並行硬體(如顯卡)上編寫並執行並行計算程序。
特性
編輯系統要求
編輯- 作業系統:Windows 7, Windows 8, Windows Server 2008 R2, 或者Windows Server 2012
- 支持DirectX 11或更新的硬體
示範程序
編輯#include <amp.h> // C++ AMP 头文件
#include <iostream>
using namespace concurrency; //C++ AMP 命名空间
const int size = 5; // 定义数组大小
void TestCPPAMP() {
int aCPU[] = {1, 1, 1, 1, 1};
int bCPU[] = {3, 3, 3, 3, 3};
int cCPU[size];
// 定义C++ AMP封装对象
array_view<const int, 1> a(size, aCPU); //a是aCPU在并行计算硬件(显卡)上的拷贝
array_view<const int, 1> b(size, bCPU);
array_view<int, 1> c(size, cCPU);
parallel_for_each( // C++ AMP 并行代码
c.extent, // 定义并行计算的大小
[=](index<1> idx) // [=]是lambda函数中的捕捉从句,index是数组下标
restrict(amp) // 通知编译器此处为C++ AMP代码
{
c[idx] = a[idx] + b[idx];
}
);
// 打印结果
for (int i = 0; i < size; i++) {
std::cout << c[i] << "\n"; // 结果应为 4, 4, 4, 4, 4
}
}
歷史
編輯C++ AMP的初始版本於2012年發布[1]。2013年,微軟在添加了一些特性後發布了C++ AMP的Microsoft Visual Studio 2013版本[2]。