Skip to content

Commit c6deb21

Browse files
datumboxfacebook-github-bot
authored andcommitted
[fbsync] Fixing clang formatter. (#4747)
Reviewed By: fmassa Differential Revision: D31921932 fbshipit-source-id: 154bfac4194a083d363e33f640ca30af3f63b63c
1 parent d053308 commit c6deb21

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)