CUDA学习日记(一):thrust::device_pointer_cast(pnt* p)

thrust::device_pointer_cast(pnt* p)是thrust库中的一个指针类型转换函数,可将thrust::raw指针转换为thrust::device_ptr指针,其作用与thrust::raw_pointer_cast(pnt* p)刚好相反。
经过类型转换,就可以很方便的使用thrust::sort等函数,而无需将其赋值给thrust::device_vector。

sample有时间再贴上来

你可能感兴趣的:(CUDA学习日记)