Skip to content

Commit

Permalink
[ONNX] Remove dangling print in repeat_interleave
Browse files Browse the repository at this point in the history
Fixes pytorch#74086

Pull Request resolved: pytorch#74125
Approved by: https://github.com/BowenBao
  • Loading branch information
shubhambhokare1 authored and pytorchmergebot committed Mar 11, 2022
1 parent b5244b8 commit 56aa1ab
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion torch/onnx/symbolic_opset13.py
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,6 @@ def repeat_interleave(g, self, repeats, dim=None, output_size=None):
for idx, input_size in enumerate(input_sizes):
if input_size is None:
output_sizes[idx], input_sizes[idx] = 0, -1
print(output_sizes, input_sizes)

cond_dynamic_repeats = (repeats_dim == 1 and repeats_sizes[0] is None)
# If input size is dynamic or repeats vector is dynamic
Expand Down

0 comments on commit 56aa1ab

Please sign in to comment.