File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 9
9
* ``torch.onnx.export`` is based on TorchScript backend and has been available since PyTorch 1.2.0.
10
10
11
11
In this tutorial, we describe how to convert a model defined
12
- in PyTorch into the ONNX format using the TorchScript ``torch.onnx.export` ONNX exporter.
12
+ in PyTorch into the ONNX format using the TorchScript ``torch.onnx.export`` ONNX exporter.
13
13
14
14
The exported model will be executed with ONNX Runtime.
15
15
ONNX Runtime is a performance-focused engine for ONNX models,
Original file line number Diff line number Diff line change @@ -87,9 +87,9 @@ def neg1(x):
87
87
# +-----------------------------+----------------------------------------------------------------+
88
88
# | ``fx_graph_transformed.py`` | Transformed FX graph, after pattern match |
89
89
# +-----------------------------+----------------------------------------------------------------+
90
- # | ``ir_post_fusion .txt`` | Inductor IR before fusion |
90
+ # | ``ir_pre_fusion .txt`` | Inductor IR before fusion |
91
91
# +-----------------------------+----------------------------------------------------------------+
92
- # | ``ir_pre_fusion .txt`` | Inductor IR after fusion |
92
+ # | ``ir_post_fusion .txt`` | Inductor IR after fusion |
93
93
# +-----------------------------+----------------------------------------------------------------+
94
94
# | ``output_code.py`` | Generated Python code for graph, with C++/Triton kernels |
95
95
# +-----------------------------+----------------------------------------------------------------+
You can’t perform that action at this time.
0 commit comments