8000 [ONNX] Update images and APIs to onnx_dynamo.rst by titaiwangms · Pull Request #144358 · pytorch/pytorch · GitHub
[go: up one dir, main page]

Skip to content

[ONNX] Update images and APIs to onnx_dynamo.rst #144358

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
Closed
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: 0 additions & 1 deletion docs/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ figures:

onnx:
@$(PYCMD) source/scripts/onnx/build_onnx_torchscript_supported_aten_op_csv_table.py
@$(PYCMD) source/scripts/onnx/build_onnx_dynamo_diagnostics_rules_md.py $(SOURCEDIR)/generated/onnx_dynamo_diagnostics_rules

opset:
@$(PYCMD) source/scripts/build_opsets.py
Expand Down
Binary file modified docs/source/_static/img/onnx/onnx_dynamo_mlp_model.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Binary file not shown.
61 changes: 14 additions & 47 deletions docs/source/onnx_dynamo.rst
Original file line number Diff line number Diff line change
Expand Up @@ -23,15 +23,6 @@ bytecode analysis that preserves the dynamic nature of the model instead of usin
In addition, during the export process, memory usage is significantly reduced compared to the TorchScript-enabled exporter.
See the :doc:`memory usage documentation <onnx_dynamo_memory_usage>` for more information.

The exporter is designed to be modular and extensible. It is composed of the following components:

- **ONNX Exporter**: :class:`Exporter` main class that orchestrates the export process.
- **ONNX Export Options**: :class:`ExportOptions` has a set of options that control the export process.
- **ONNX Registry**: :class:`OnnxRegistry` is the registry of ONNX operators and functions.
- **FX Graph Extractor**: :class:`FXGraphExtractor` extracts the FX graph from the PyTorch model.
- **Fake Mode**: :class:`ONNXFakeContext` is a context manager that enables fake mode for large scale models.
- **ONNX Program**: :class:`ONNXProgram` is the output of the exporter that contains the exported ONNX graph and diagnostics.
- **ONNX Diagnostic Options**: :class:`DiagnosticOptions` has a set of options that control the diagnostics emitted by the exporter.

Dependencies
------------
Expand Down Expand Up @@ -85,6 +76,12 @@ See below a demonstration of exporter API in action with a simple Multilayer Per
As the code above shows, all you need is to provide :func:`torch.onnx.export` with an instance of the model and its input.
The exporter will then return an instance of :class:`torch.onnx.ONNXProgram` that contains the exported ONNX graph along with extra information.

``onnx_program.optimize()`` can be called to optimize the ONNX graph with constant folding and elimination of redundant operators. The optimization is done in-place.

.. code-block:: python

onnx_program.optimize()

The in-memory model available through ``onnx_program.model_proto`` is an ``onnx.ModelProto`` object in compliance with the `ONNX IR spec <https://github.com/onnx/onnx/blob/main/docs/IR.md>`_.
The ONNX model may then be serialized into a `Protobuf file <https://protobuf.dev/>`_ using the :meth:`torch.onnx.ONNXProgram.save` API.

Expand All @@ -93,12 +90,15 @@ The ONNX model may then be serialized into a `Protobuf file <https://protobuf.de
onnx_program.save("mlp.onnx")

Two functions exist to export the model to ONNX based on TorchDynamo engine.
They slightly differ in the way they produce the :class:`ExportedProgram`.
They slightly differ in the way they produce the :class:`torch.export.ExportedProgram`.
:func:`torch.onnx.dynamo_export` was introduced with PyTorch 2.1 and
:func:`torch.onnx.export` was extended with PyTorch 2.5 to easily switch
from TorchScript to TorchDynamo. To call the former function,
the last line of the previous example can be replaced by the following one.

.. note::
:func:`torch.onnx.dynamo_export` will be deprecated in the future. Please use :func:`torch.onnx.export` with the parameter ``dynamo=True`` instead.

.. code-block:: python

onnx_program = torch.onnx.dynamo_export(model, tensor_x)
Expand All @@ -112,46 +112,13 @@ You can view the exported model using `Netron <https://netron.app/>`__.
:width: 40%
:alt: MLP model as viewed using Netron

Note that each layer is represented in a rectangular box with a *f* icon in the top right corner.

.. image:: _static/img/onnx/onnx_dynamo_mlp_model_function_highlight.png
:width: 40%
:alt: ONNX function highlighted on MLP model

By expanding it, the function body is shown.

.. image:: _static/img/onnx/onnx_dynamo_mlp_model_function_body.png
:width: 50%
:alt: ONNX function body

The function body is a sequence of ONNX operators or other functions.

When the conversion fails
-------------------------

Function :func:`torch.onnx.export` should called a second time with
parameter ``report=True``. A markdown report is generated to help the user
to resolve the issue.

Function :func:`torch.onnx.dynamo_export` generates a report using 'SARIF' format.
ONNX diagnostics goes beyond regular logs through the adoption of
`Static Analysis Results Interchange Format (aka SARIF) <https://docs.oasis-open.org/sarif/sarif/v2.1.0/sarif-v2.1.0.html>`__
to help users debug and improve their model using a GUI, such as
Visual Studio Code's `SARIF Viewer <https://marketplace.visualstudio.com/items?itemName=MS-SarifVSCode.sarif-viewer>`_.

The main advantages are:

- The diagnostics are emitted in machine parseable `Static Analysis Results Interchange Format (SARIF) <https://docs.oasis-open.org/sarif/sarif/v2.1.0/sarif-v2.1.0.html>`__.
- A new clearer, structured way to add new and keep track of diagnostic rules.
- Serve as foundation for more future improvements consuming the diagnostics.

.. toctree::
:maxdepth: 1
:caption: ONNX Diagnostic SARIF Rules
:glob:

generated/onnx_dynamo_diagnostics_rules/*

.. toctree::
:hidden:

Expand All @@ -162,14 +129,14 @@ API Reference

.. autofunction:: torch.onnx.dynamo_export

.. autoclass:: torch.onnx.ONNXProgram
:members:

.. autoclass:: torch.onnx.ExportOptions
:members:

.. autofunction:: torch.onnx.enable_fake_mode

.. autoclass:: torch.onnx.ONNXProgram
:members:

.. autoclass:: torch.onnx.ONNXRuntimeOptions
:members:

Expand All @@ -180,4 +147,4 @@ API Reference
:members:

.. autoclass:: torch.onnx.DiagnosticOptions
:members:
:members:
2 changes: 1 addition & 1 deletion docs/source/onnx_torchscript.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ TorchScript-based ONNX Exporter
===============================

.. note::
To export an ONNX model using TorchDynamo instead of TorchScript, see :func:`torch.onnx.dynamo_export`.
To export an ONNX model using TorchDynamo instead of TorchScript, please see :doc:`Learn more about the TorchDynamo-based ONNX Exporter <onnx_dynamo>`

.. contents:: :local:

Expand Down
41 changes: 0 additions & 41 deletions docs/source/scripts/onnx/build_onnx_dynamo_diagnostics_rules_md.py

This file was deleted.

Loading
0