我正在尝试开始使用 C++ Amp 库。我正在关注此MSDN 杂志指南,但我收到了位于 aplibrary 中的这部分代码的错误(不是我的代码)。
protected:
_Accelerator_view_impl_ptr _M_accelerator_view;
_Accelerator_view_impl_ptr _M_access_on_accelerator_view;
void * _M_data_ptr;
void * _M_host_ptr;
size_t _M_elem_size;
size_t _M_num_elems;
bool _M_owns_data;
bool _M_is_staging;
错误是
3 IntelliSense:amp 限制函数“Concurrency::details::_Texture_descriptor::_Texture_descriptor(Concurrency::details::_Texture *_Texture_ptr) restrict(cpu,amp)”的非法参数类型“void *”(在第 538 行声明"c:\program 文件 (x86)\microsoft visual studio 11.0\vc\include\amprt.h") c:\Program Files (x86)\Microsoft Visual Studio 11.0\VC\include\amprt.h 1466 16
到目前为止我复制的代码
#include <amp.h> // C++ AMP header file
#include <iostream> // For std::cout etc
using namespace concurrency; // Save some typing :)
using std::vector; // Ditto. Comes from <vector> brought in by amp.h
int main()
{
do_it();
std::cout << "Hit any key to exit..." << std::endl;
std::cin.get();
}
void do_it()
{
// Rows and columns for matrix
const int M = 1024;
const int N = 1024;
// Create storage for a matrix of above size
vector<int> vA(M * N);
vector<int> vB(M * N);
// Populate matrix objects
int i = 0;
std::generate(vA.begin(), vA.end(), [&i](){return i++;});
std::generate(vB.begin(), vB.end(), [&i](){return i--;});
// Output storage for matrix calculation
vector<int> vC(M * N);
perform_calculation(vA, vB, vC, M, N);
}
void perform_calculation(
vector<int>& vA, vector<int>& vB, vector<int>& vC, int M, int N)
{
for (int i = 0; i < M; i++)
{
for (int j = 0; j < N; j++)
{
vC[i * N + j] = vA[i * N + j] + vB[i * N + j];
}
}
}
构建输出
------ Build started: Project: Project1, Configuration: Debug Win32------
Source.cpp
LINK : padding exhausted: performing full link
Project1.vcxproj ->C:\Development\Project1\Debug\Project1.exe
CodeContracts:
Project1: Run static contract analysis.
CodeContracts: Project1: Cannot load assembly 'C:\Development\Project1\Project1\Debub\Decl\Project1.exe'
CodeContracts: Project1: Total methods analyzed 0
CodeContracts:Project1: Total time 135ms. 0ms/method
CodeContracts: Checked 0 assertions.
CodeContracts: Project1: Static contract analysis done.
========== Build: 0 succeeded, 1 failed, 0 up-to-date, 0 skipped ==========