Skip to content

Commit bccdc0c

Browse files
committed
doc
1 parent c7e3ea1 commit bccdc0c

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

CHANGELOGS.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ Change Logs
44
0.7.13
55
++++++
66

7+
* :pr:`244`: add a patch to bypass the exception raised when the dynamic dimension is in {0,1}
8+
79
0.7.12
810
++++++
911

onnx_diagnostic/torch_export_patches/patches/patch_torch.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ def patched__broadcast_shapes(*_shapes):
170170
if guard_or_false(shape[idx] == common_shape[idx]):
171171
continue
172172
# PATCHED: two cases, if == for sure, no broadcast,
173-
# otherwise maybe broadcase with max(dimensions)
173+
# otherwise maybe broadcast with max(dimensions)
174174
if guard_size_oblivious(common_shape[idx] == 1):
175175
if shape[idx] < 0:
176176
raise ValueError(

0 commit comments

Comments
 (0)