| 121 | } |
| 122 | template <typename T, typename TIndex> |
| 123 | void CompareAdjacent(const GPUDevice& d, const T* in, const int64 size, |
| 124 | TIndex* out) { |
| 125 | GpuLaunchConfig config = GetGpuLaunchConfig(size, d); |
| 126 | CompareAdjacentKernel< |
| 127 | T><<<config.block_count, config.thread_per_block, 0, d.stream()>>>( |
| 128 | in, size, out); |
| 129 | } |
| 130 | template <typename T, typename TIndex> |
| 131 | class UniqueAliV2GpuOp : public AsyncOpKernel { |
| 132 | public: |
nothing calls this directly
no test coverage detected