CUDA初学者-Thrust - Containers - Host Containers && Containers(10)

CUDA初学者-Thrust - Containers - Host Containers && Containers(10),第1张

本人 CUDA小白一枚,要是有什么不对,还望各位大佬指点。
本文及后面的几篇将分别从几个方面来大概阐述一下Thrust的一些接口。原来的网址在这里。

2.Container Classes

2.1 Host Containers

template <typename T, typename Alloc = std::allocator<T>>
class thrust::host_vector;

template <typename T, typename Alloc>
void thrust::swap(
	host_vector< T, Alloc > & a,
  	host_vector< T, Alloc > & b
);

实现两个数字的交换

3. Containers

3.1 Containers

template <typename T, typename Alloc = thrust::device_allocator<T>>
class thrust::device_vector;

template <typename T, typename Alloc>
void thrust::swap(
	device_vector< T, Alloc > & a,
  	device_vector< T, Alloc > & b
);

device端的两元素交换。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/1295868.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-10
下一篇 2022-06-10

发表评论

登录后才能评论

评论列表(0条)

保存