@@ -232,8 +232,7 @@ get_unique_indices_cuda_impl(
232
232
N, \
233
233
0 , \
234
234
int (log2 (float (max_indices + 1 )) + 1 ), \
235
- at::cuda::getCurrentCUDAStream (), \
236
- false ))
235
+ at::cuda::getCurrentCUDAStream ()))
237
236
238
237
#define INVOKE_CUB_SORT_KEYS (TEMP_STORAGE_PTR ) \
239
238
AT_CUDA_CHECK (FBGEMM_GPU_CUB_NS_PREFIX cub::DeviceRadixSort::SortKeys ( \
@@ -244,8 +243,7 @@ get_unique_indices_cuda_impl(
244
243
N, \
245
244
0 , \
246
245
int (log2 (float (max_indices + 1 )) + 1 ), \
247
- at::cuda::getCurrentCUDAStream (), \
248
- false ))
246
+ at::cuda::getCurrentCUDAStream ()))
249
247
250
248
#define INVOKE_CUB_ENCODE (TEMP_STORAGE_PTR ) \
251
249
AT_CUDA_CHECK (FBGEMM_GPU_CUB_NS_PREFIX cub::DeviceRunLengthEncode::Encode ( \
@@ -256,8 +254,7 @@ get_unique_indices_cuda_impl(
256
254
unique_indices_count->data_ptr <int32_t >(), \
257
255
unique_indices_length.data_ptr <int32_t >(), \
258
256
N, \
259
- at::cuda::getCurrentCUDAStream (), \
260
- false ))
257
+ at::cuda::getCurrentCUDAStream ()))
261
258
262
259
#define INVOKE_CUB_UNIQUE (TEMP_STORAGE_PTR ) \
263
260
AT_CUDA_CHECK (FBGEMM_GPU_CUB_NS_PREFIX cub::DeviceSelect::Unique ( \
@@ -267,8 +264,7 @@ get_unique_indices_cuda_impl(
267
264
unique_indices.data_ptr <index_t >(), \
268
265
unique_indices_length.data_ptr <int32_t >(), \
269
266
N, \
270
- at::cuda::getCurrentCUDAStream (), \
271
- false ))
267
+ at::cuda::getCurrentCUDAStream ()))
272
268
273
269
AT_DISPATCH_INDEX_TYPES (
274
270
linear_indices.scalar_type (), " get_unique_indices_cuda" , [&] {
0 commit comments