We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0551586 commit 49061a2Copy full SHA for 49061a2
fbgemm_gpu/src/jagged_tensor_ops.cu
@@ -667,8 +667,12 @@ class DenseToJaggedGPUOp
667
at::cuda::OptionalCUDAGuard device_guard;
668
device_guard.set_index(dense.get_device());
669
670
- AT_DISPATCH_FLOATING_TYPES_AND_HALF(
671
- values.scalar_type(), "jagged_dense_add_forward", [&] {
+ AT_DISPATCH_FLOATING_TYPES_AND2(
+ at::ScalarType::Half,
672
+ at::ScalarType::Long,
673
+ values.scalar_type(),
674
+ "jagged_dense_add_forward",
675
+ [&] {
676
jagged_dense_elementwise_jagged_output_<scalar_t>(
677
values,
678
offsets,
0 commit comments