This is an automated email from the ASF dual-hosted git repository.
github-bot pushed a change to branch nightly
in repository https://gitbox.apache.org/repos/asf/tvm.git
from 30b7b1c754 [CI] Upgrade unity image tag to `20240917-153130-9f281758`
(#17410)
add 5e85443e43 [FFI][BUGFIX] Grab GIL when check env signals (#17419)
add 3f2c91a652 [Relax][PyTorch] Add support for
`torch.export.ExportedProgram` in Relax PyTorch Frontend (#17396)
No new revisions were added by this update.
Summary of changes:
python/tvm/_ffi/_cython/base.pxi | 16 +-
python/tvm/_ffi/_cython/packed_func.pxi | 16 -
python/tvm/relax/frontend/torch/__init__.py | 1 +
.../frontend/torch/base_fx_graph_translator.py | 228 +++++++++
.../frontend/torch/exported_program_translator.py | 243 ++++++++++
python/tvm/relax/frontend/torch/fx_translator.py | 209 +-------
src/runtime/registry.cc | 12 +-
src/support/ffi_testing.cc | 8 +
.../relax/test_frontend_from_exported_program.py | 535 +++++++++++++++++++++
9 files changed, 1056 insertions(+), 212 deletions(-)
create mode 100644 python/tvm/relax/frontend/torch/base_fx_graph_translator.py
create mode 100644
python/tvm/relax/frontend/torch/exported_program_translator.py
create mode 100644 tests/python/relax/test_frontend_from_exported_program.py