| 274 | |
| 275 | template <typename T> |
| 276 | __global__ void setValueKernel(T* array, size_t index, T value) { |
| 277 | array[index] = value; |
| 278 | } |
| 279 | |
| 280 | // dense vector wrapper on device |
| 281 | template <typename T> |
nothing calls this directly
no outgoing calls
no test coverage detected