mirror of
https://github.com/pytorch/pytorch.git
synced 2025-10-21 13:44:15 +08:00
1/n PR to
- Move code from torch-onnx from commit 395495e566
into torch.onnx and fixes imports.
- Integrate the new export logic with the torch.onnx.export API and include basic set of tests.
- Refactor the API for the change.
- Improve documentation.
Next PRs will be more tests and docs.
Fix https://github.com/pytorch/pytorch/issues/129277
Pull Request resolved: https://github.com/pytorch/pytorch/pull/132530
Approved by: https://github.com/titaiwangms, https://github.com/malfet
121 lines
3.7 KiB
Python
121 lines
3.7 KiB
Python
# Owner(s): ["module: onnx"]
|
|
"""Simple API tests for the ONNX exporter."""
|
|
|
|
from __future__ import annotations
|
|
|
|
import os
|
|
|
|
import torch
|
|
from torch.onnx._internal import exporter
|
|
from torch.testing._internal import common_utils
|
|
|
|
|
|
class SampleModel(torch.nn.Module):
|
|
def forward(self, x):
|
|
y = x + 1
|
|
z = y.relu()
|
|
return (y, z)
|
|
|
|
|
|
class SampleModelTwoInputs(torch.nn.Module):
|
|
def forward(self, x, b):
|
|
y = x + b
|
|
z = y.relu()
|
|
return (y, z)
|
|
|
|
|
|
class SampleModelForDynamicShapes(torch.nn.Module):
|
|
def forward(self, x, b):
|
|
return x.relu(), b.sigmoid()
|
|
|
|
|
|
class TestExportAPIDynamo(common_utils.TestCase):
|
|
"""Tests for the ONNX exporter API when dynamo=True."""
|
|
|
|
def test_args_normalization_with_no_kwargs(self):
|
|
onnx_program = torch.onnx.export(
|
|
SampleModelTwoInputs(),
|
|
(torch.randn(1, 1, 2), torch.randn(1, 1, 2)),
|
|
dynamo=True,
|
|
)
|
|
assert onnx_program
|
|
exporter.verify_onnx_program(onnx_program)
|
|
|
|
def test_args_normalization_with_kwargs(self):
|
|
onnx_program = torch.onnx.export(
|
|
SampleModelTwoInputs(),
|
|
(torch.randn(1, 1, 2), {"b": torch.randn(1, 1, 2)}),
|
|
dynamo=True,
|
|
)
|
|
assert onnx_program
|
|
exporter.verify_onnx_program(onnx_program)
|
|
|
|
def test_args_normalization_with_empty_dict_at_the_tail(self):
|
|
onnx_program = torch.onnx.export(
|
|
SampleModelTwoInputs(),
|
|
(torch.randn(1, 1, 2), {"b": torch.randn(1, 1, 2)}),
|
|
dynamo=True,
|
|
)
|
|
assert onnx_program
|
|
exporter.verify_onnx_program(onnx_program)
|
|
|
|
def test_dynamic_axes_enable_dynamic_shapes_with_fully_specified_axes(self):
|
|
onnx_program = torch.onnx.export(
|
|
SampleModelForDynamicShapes(),
|
|
(torch.randn(2, 2, 3), {"b": torch.randn(2, 2, 3)}),
|
|
dynamic_axes={
|
|
"x": {0: "customx_dim_0", 1: "customx_dim_1", 2: "customx_dim_2"},
|
|
"b": {0: "customb_dim_0", 1: "customb_dim_1", 2: "customb_dim_2"},
|
|
},
|
|
dynamo=True,
|
|
)
|
|
assert onnx_program
|
|
exporter.verify_onnx_program(onnx_program)
|
|
|
|
def test_dynamic_axes_enable_dynamic_shapes_with_default_axe_names(self):
|
|
onnx_program = torch.onnx.export(
|
|
SampleModelForDynamicShapes(),
|
|
(torch.randn(2, 2, 3), {"b": torch.randn(2, 2, 3)}),
|
|
dynamic_axes={
|
|
"x": [0, 1, 2],
|
|
"b": [0, 1, 2],
|
|
},
|
|
dynamo=True,
|
|
)
|
|
assert onnx_program
|
|
exporter.verify_onnx_program(onnx_program)
|
|
|
|
def test_dynamic_axes_supports_partial_dynamic_shapes(self):
|
|
onnx_program = torch.onnx.export(
|
|
SampleModelForDynamicShapes(),
|
|
(torch.randn(2, 2, 3), {"b": torch.randn(2, 2, 3)}),
|
|
dynamic_axes={
|
|
"b": [0, 1, 2],
|
|
},
|
|
dynamo=True,
|
|
)
|
|
assert onnx_program
|
|
exporter.verify_onnx_program(onnx_program)
|
|
|
|
def test_saved_f_exists_after_export(self):
|
|
with common_utils.TemporaryFileName(suffix=".onnx") as path:
|
|
_ = torch.onnx.export(
|
|
SampleModel(), (torch.randn(1, 1, 2),), path, dynamo=True
|
|
)
|
|
self.assertTrue(os.path.exists(path))
|
|
|
|
def test_export_supports_script_module(self):
|
|
class ScriptModule(torch.nn.Module):
|
|
def forward(self, x):
|
|
return x
|
|
|
|
onnx_program = torch.onnx.export(
|
|
torch.jit.script(ScriptModule()), (torch.randn(1, 1, 2),), dynamo=True
|
|
)
|
|
assert onnx_program
|
|
exporter.verify_onnx_program(onnx_program)
|
|
|
|
|
|
if __name__ == "__main__":
|
|
common_utils.run_tests()
|