Skip to content

Commit

Permalink
Fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
nithinsubbiah committed Oct 17, 2024
1 parent 4e84bbb commit 984e342
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions sharktank/sharktank/ops/qconv_impls.py
Original file line number Diff line number Diff line change
Expand Up @@ -274,9 +274,9 @@ def _pad_last_2d(input_tensor, pad_width):
)

# Copy the values from the input tensor to the appropriate location in the padded tensor
padded_tensor[:, :, pad_top : pad_top + height, pad_left : pad_left + width] = (
input_tensor
)
padded_tensor[
:, :, pad_top : pad_top + height, pad_left : pad_left + width
] = input_tensor
return padded_tensor


Expand Down

0 comments on commit 984e342

Please sign in to comment.