我想用我的两张显卡和 CUDA Thrust 进行计算。
我有两张显卡。即使我将两个 device_vector 存储在 std::vector 中,在单卡上运行也适用于两张卡。
如果我同时使用两张卡,则循环中的第一个循环有效并且不会导致错误。第一次运行后它会导致错误,可能是因为设备指针无效。
我不确定确切的问题是什么,或者如何使用两张卡进行计算。
最小代码示例:
std::vector<thrust::device_vector<float> > TEST() {
std::vector<thrust::device_vector<float> > vRes;
unsigned int iDeviceCount = GetCudaDeviceCount();
for(unsigned int i = 0; i < iDeviceCount; i++) {
checkCudaErrors(cudaSetDevice(i) );
thrust::host_vector<float> hvConscience(1024);
// first run works, runs afterwards cause errors ..
vRes.push_back(hvConscience); // this push_back causes the error on exec
}
return vRes;
}
执行时的错误信息:
terminate called after throwing an instance of 'thrust::system::system_error'
what(): invalid argument