我尝试使用thrust::transform
对thrust:complex<float>
类型的向量进行操作但没有成功。以下示例在编译期间会出现多页错误。
#include <cuda.h>
#include <cuda_runtime.h>
#include <cufft.h>
#include <thrust/device_vector.h>
#include <thrust/host_vector.h>
#include <thrust/transform.h>
#include <thrust/complex.h>
int main(int argc, char *argv[]) {
thrust::device_vector< thrust::complex<float> > d_vec1(4);
thrust::device_vector<float> d_vec2(4);
thrust::fill(d_vec1.begin(), d_vec1.end(), thrust::complex<float>(1,1));
thrust::transform(d_vec1.begin(), d_vec1.end(), d_vec2.begin(), thrust::abs< thrust::complex<float> >() );
}
我在Ubuntu Xenial上使用CUDA 8.0,并使用nvcc --std=c++11 main.cpp -o main
使用clang 3.8.0-2ubuntu4进行编译。
主要错误似乎是:
main.cpp: In function ‘int main(int, char**)’:
main.cpp:17:105: error: no matching function for call to ‘abs()’
gin(), d_vec1.end(), d_vec2.begin(), thrust::abs< thrust::complex<float> >() );
和
/usr/local/cuda-8.0/bin/../targets/x86_64-linux/include/thrust/detail/complex/arithmetic.h:143:20: note: template argument deduction/substitution failed:
main.cpp:17:105: note: candidate expects 1 argument, 0 provided
gin(), d_vec1.end(), d_vec2.begin(), thrust::abs< thrust::complex<float> >() );
^
在真正的花车上工作没问题,但没有复杂的花车。我认为这是一个我错过的类型错误,但我仍然处于学习曲线的陡峭部分,其中包括Thrust&amp; amp;模板。
答案 0 :(得分:3)
错误消息非常具有描述性:
thrust::abs<thrust::complex<...>>
是函数,需要正好一个参数,请参阅thrust/detail/complex/arithmetic.h#L143:
template <typename ValueType>
__host__ __device__
inline ValueType abs(const complex<ValueType>& z){
return hypot(z.real(),z.imag());
}
对于您的用例,您需要通过仿函数包装该函数:
struct complex_abs_functor
{
template <typename ValueType>
__host__ __device__
ValueType operator()(const thrust::complex<ValueType>& z)
{
return thrust::abs(z);
}
};
最后,在这里使用该仿函数:
thrust::transform(d_vec1.begin(),
d_vec1.end(),
d_vec2.begin(),
complex_abs_functor());