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 36f2502f00 Add op support for roll op (#17839)
add b3d3a7aef0 [Relax][PyTorch] Add copy_ op support in fxGraph (#17858)
add 111ddf7428 [Relax][PyTorch] Support eye op for ExportedProgram
importer (#17864)
add b5b0337568 [Relax][PyTorch] support for index.Tensor (#17836)
add fe1b228210 [Relax][Pytorch] Add support for bitwise_or op support
(#17871)
add 2ca6ec8a5d [Relax][PyTorch] Sort.default (#17852)
No new revisions were added by this update.
Summary of changes:
.../frontend/torch/base_fx_graph_translator.py | 19 ++-
.../frontend/torch/exported_program_translator.py | 8 +
python/tvm/relax/frontend/torch/fx_translator.py | 8 +
python/tvm/relax/op/__init__.py | 1 +
python/tvm/relax/op/manipulate.py | 63 ++++++++
.../tvm/relax/transform/legalize_ops/manipulate.py | 9 ++
python/tvm/script/ir_builder/relax/ir.py | 2 +
python/tvm/topi/transform.py | 51 +++++++
src/relax/op/tensor/manipulate.cc | 145 ++++++++++++++++++
src/relax/op/tensor/manipulate.h | 12 ++
tests/python/relax/test_from_exported_to_cuda.py | 164 ++++++++++++++++++++-
.../relax/test_frontend_from_exported_program.py | 42 ++++++
tests/python/relax/test_frontend_from_fx.py | 45 +++++-
13 files changed, 559 insertions(+), 10 deletions(-)