".github/workflows/cli.yml" did not exist on "2b69dd7e63a11320ee167a381dd4eb3b4ee7b720"
Commit d0c04187 authored by Zhao Wang's avatar Zhao Wang Committed by Kai Chen
Browse files

Fix a typo in deform_conv_cuda_kernel.cu (#1716)

Change pad_d to pad_w at line 821 in deform_conv_cuda_kernel.cu, which is a typo.
parent 1ce93e4e
...@@ -818,7 +818,7 @@ void modulated_deformable_col2im_cuda( ...@@ -818,7 +818,7 @@ void modulated_deformable_col2im_cuda(
modulated_deformable_col2im_gpu_kernel<<<GET_BLOCKS(num_kernels), CUDA_NUM_THREADS>>>( modulated_deformable_col2im_gpu_kernel<<<GET_BLOCKS(num_kernels), CUDA_NUM_THREADS>>>(
num_kernels, data_col_, data_offset_, data_mask_, channels, height_im, width_im, num_kernels, data_col_, data_offset_, data_mask_, channels, height_im, width_im,
kernel_h, kernel_w, pad_h, pad_h, stride_h, stride_w, kernel_h, kernel_w, pad_h, pad_w, stride_h, stride_w,
dilation_h, dilation_w, channel_per_deformable_group, dilation_h, dilation_w, channel_per_deformable_group,
batch_size, deformable_group, height_col, width_col, grad_im_); batch_size, deformable_group, height_col, width_col, grad_im_);
})); }));
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment