Fermat
CUGAR
Basic Module
Vectors
This module implements host & device vectors
vector
host_vector
device_vector
caching_device_vector
Example
// build a host vector and copy it to the device
cugar::vector<host_tag,uint32>
h_vector;
cugar::vector<host_tag,uint32>
d_vector;
h_vector.push_back(3u);
d_vector = h_vector;
Generated by
1.8.13