Skip to content

Commit

Permalink
fix for the previous commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Viktor Gyenes committed Jan 29, 2025
1 parent a359f42 commit f66131b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nnef_tools-pyproject/nnef_tools/conversion/onnx_to_nnef.py
Original file line number Diff line number Diff line change
Expand Up @@ -384,7 +384,7 @@ def is_unused(self, tensor):
'size': '![1, 1] + kernel_shape',
'stride': '![1, 1] + strides',
'dilation': '![1, 1] + dilations',
'padding': '!convert_padding(_pads, auto_pad, None, I[0].rank, strides if ceil_mode == 1 else None)',
'padding': '!convert_padding(_pads, auto_pad, None, I[0].rank, [1, 1] + strides if ceil_mode == 1 else None)',
'border': '!"constant" if count_include_pad else "ignore"',
}
),
Expand Down

0 comments on commit f66131b

Please sign in to comment.