Skip to content

Commit f46657b

Browse files
committed
doc
1 parent 5a5921b commit f46657b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

_doc/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ to know onnx for that. See :ref:`l-numpy-api-onnx`.
182182
x = np.array([[0.1, 0.2], [0.3, 0.4]], dtype=np.float32)
183183
y = np.array([[0.11, 0.22], [0.33, 0.44]], dtype=np.float32)
184184
res = jitted_myloss(x, y)
185-
print(to_dot(jitted_myloss.get_onnx()))
185+
print("DOT-SECTION", to_dot(jitted_myloss.get_onnx()))
186186

187187
Older versions
188188
++++++++++++++

onnx_array_api/plotting/dot_plot.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ def myloss(x, y):
110110
x = np.array([[0.1, 0.2], [0.3, 0.4]], dtype=np.float32)
111111
y = np.array([[0.11, 0.22], [0.33, 0.44]], dtype=np.float32)
112112
res = jitted_myloss(x, y)
113-
print(to_dot(jitted_myloss.get_onnx()))
113+
print("DOT-SECTION", to_dot(jitted_myloss.get_onnx()))
114114
"""
115115
clean_label_reg1 = re.compile("\\\\x\\{[0-9A-F]{1,6}\\}")
116116
clean_label_reg2 = re.compile("\\\\p\\{[0-9P]{1,6}\\}")

0 commit comments

Comments
 (0)