我在设备向量上使用简单的推力:: 包容性扫描调用。在调试版本中,这将毫无错误地执行。但是,使用发布版本执行时会遇到错误。
此外,这似乎只影响推力::device<> 向量?
在抛出“thrust::system::system_error”的实例后调用终止 what(): 未指定的启动失败
我正在使用 eclipse nsight 来执行调试和发布版本。
#include <iostream>
using namespace std;
#include <thrust/scan.h>
#include <thrust/device_vector.h>
int main(void) {
cout << "hello\n";
int data[6] = {1, 0, 2, 2, 1, 3};
thrust::inclusive_scan(data, data + 6, data); // in-place scan
for(int i=0;i<6;i++) cout<< data[i] << "\n";
cout << "inclusive scan on a device vector\n";
thrust::device_vector<int> d_C_0(6);
d_C_0[0] = 1;
d_C_0[1] = 0;
d_C_0[2] = 2;
d_C_0[3] = 2;
d_C_0[4] = 1;
d_C_0[5] = 3;
thrust::inclusive_scan(d_C_0.begin(), d_C_0.begin() + 6, d_C_0.begin()); // in-place scan
for(int i=0;i<6;i++) cout<< d_C_0[i] << "\n";
return 0;
}