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/status/exported_program_dynamic.rst
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ with different options. This steps happens before converting into ONNX.
for exporter in (
"export-strict",
"export-nostrict",
"export-nostrict-oblivious",
"export-nostrict-decall",
"export-tracing",
):
Expand Down
16 changes: 16 additions & 0 deletions _unittests/ut_torch_export_patches/test_eval.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,22 @@ def test_run_exporter_custom_nested_cond(self):
dynamic=False,
)

def test_run_exporter_dimension0(self):
evaluation(
cases="ExportWithDimension0",
exporters="export-nostrict-oblivious",
quiet=False,
dynamic=True,
)

def test_run_exporter_dimension1(self):
evaluation(
cases="ExportWithDimension1",
exporters="export-nostrict-oblivious",
quiet=False,
dynamic=True,
)


if __name__ == "__main__":
unittest.main(verbosity=2)
Loading
Loading