* Get a device pointer to a global __constant__ or __device__ variable using * its un-mangled name. If provided, *size is set to the size of the variable * in bytes. */
| 3040 | * in bytes. |
| 3041 | */ |
| 3042 | inline CUdeviceptr get_global_ptr(const char* name, |
| 3043 | size_t* size = nullptr) const { |
| 3044 | return _impl->cuda_kernel().get_global_ptr(name, size); |
| 3045 | } |
| 3046 | |
| 3047 | /* |
| 3048 | * Copy data from a global __constant__ or __device__ array to the host using |
nothing calls this directly
no test coverage detected