| 99 | } |
| 100 | template <typename TIndex> |
| 101 | void MoveValues(const GPUDevice& d, const TIndex* keys, const TIndex* values, |
| 102 | const int64 size, TIndex* out) { |
| 103 | GpuLaunchConfig config = GetGpuLaunchConfig(size, d); |
| 104 | MoveValuesKernel<<<config.block_count, config.thread_per_block, 0, |
| 105 | d.stream()>>>(keys, values, size, out); |
| 106 | } |
| 107 | |
| 108 | template <typename TIndex> |
| 109 | void MoveValues(const GPUDevice& d, const TIndex* keys, const TIndex* values, |
no test coverage detected