Go to the source code of this file.
|
template<typename T > |
void | CUDAfill_n (T *ptr, size_t n, const T &value) |
| fill device memory with a given value. More...
|
|
template void | CUDAfill_n< int > (int *ptr, size_t n, const int &value) |
|
template void | CUDAfill_n< size_t > (size_t *ptr, size_t n, const size_t &value) |
|
template void | CUDAfill_n< float > (float *ptr, size_t n, const float &value) |
|
template void | CUDAfill_n< double > (double *ptr, size_t n, const double &value) |
|
template void | CUDAfill_n< std::complex< float > > (std::complex< float > *ptr, size_t n, const std::complex< float > &value) |
|
template void | CUDAfill_n< std::complex< double > > (std::complex< double > *ptr, size_t n, const std::complex< double > &value) |
|