Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions _doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,7 @@ def linkcode_resolve(domain, info):
nitpicky = True
# See also scikit-learn/scikit-learn#26761
nitpick_ignore = [
("py:class", "ast.Node"),
("py:class", "dtype"),
("py:class", "False"),
("py:class", "True"),
Expand Down
4 changes: 4 additions & 0 deletions onnx_diagnostic/torch_export_patches/patch_module.py
Original file line number Diff line number Diff line change
Expand Up @@ -400,6 +400,8 @@ def transform_method(
.. runpython::
:showcode:
:process:
:store_in_file: test_example_transform_method_1.py
import torch
from onnx_diagnostic.torch_export_patches.patch_module import transform_method
Expand Down Expand Up @@ -430,6 +432,8 @@ def forward(self, x, y):
.. runpython::
:showcode:
:process:
:store_in_file: test_example_transform_method_2.py
import torch
from onnx_diagnostic.torch_export_patches.patch_module import transform_method
Expand Down
Loading