Skip to content

Commit 979ecac

Browse files
authored
Fixing clang formatter. (#4747)
1 parent f1ff4d1 commit 979ecac

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

torchvision/csrc/ops/cuda/deform_conv2d_kernel.cu

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -230,7 +230,8 @@ void deformable_im2col(
230230
at::Tensor data_col) {
231231
at::cuda::CUDAGuard device_guard(input.get_device());
232232

233-
const int64_t num_kernels = (int64_t)n_in_channels * out_h * out_w * parallel_imgs;
233+
const int64_t num_kernels =
234+
(int64_t)n_in_channels * out_h * out_w * parallel_imgs;
234235

235236
const unsigned int threads = GET_THREADS();
236237
const unsigned int blocks = GET_BLOCKS(threads, num_kernels);

0 commit comments

Comments
 (0)