Skip to content

Commit

Permalink
Fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
NicolasHug committed Oct 25, 2023
1 parent be83cf2 commit 843f1a6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions torchvision/csrc/ops/autograd/ps_roi_pool_kernel.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ class PSROIPoolFunction : public torch::autograd::Function<PSROIPoolFunction> {
ctx->saved_data["pooled_width"] = pooled_width;
ctx->saved_data["input_shape"] = input.sym_sizes();
at::AutoDispatchBelowADInplaceOrView g;
auto result =
ps_roi_pool_symint(input, rois, spatial_scale, pooled_height, pooled_width);
auto result = ps_roi_pool_symint(
input, rois, spatial_scale, pooled_height, pooled_width);

auto output = std::get<0>(result);
auto channel_mapping = std::get<1>(result);
Expand Down

0 comments on commit 843f1a6

Please sign in to comment.