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 b818183aad [Relax][PyTorch] Add AvgPool 1D and 3D Op Support for 
Exported Program and FX graph (#17921)
     add dcb5a3a8c9 [Relax][PyTorch] Add UpSample Bicubic Op Support for 
Exported Program and FX graph (#17932)
     add f4704f2288 [Relax][PyTorch] Add torch.outer Op Support for Exported 
Program and FX graph  (#17930)
     add 8a6c9bf230 [Relax][PyTorch] Add ReLU6 Op Support for Exported Program 
and FX graph (#17918)
     add 92ea12d7e2 [FFI] Variant specialize for all ObjectRef (#17943)
     add 8929d3fdd0 [TOPI] Add shape validation to prevent negative dimensions 
in conv operations (#17942)

No new revisions were added by this update.

Summary of changes:
 ffi/include/tvm/ffi/any.h                          |   9 ++
 ffi/include/tvm/ffi/base_details.h                 |   6 +-
 ffi/include/tvm/ffi/container/container_details.h  |   8 ++
 ffi/include/tvm/ffi/container/variant.h            |  98 +++++++++++++++----
 ffi/tests/cpp/test_any.cc                          |   1 +
 ffi/tests/cpp/test_map.cc                          |   2 +-
 ffi/tests/cpp/test_variant.cc                      |  27 ++++++
 python/tvm/relax/frontend/nn/op.py                 |  22 +++++
 .../frontend/torch/exported_program_translator.py  |  29 ++++++
 python/tvm/relax/frontend/torch/fx_translator.py   |   8 +-
 python/tvm/relax/op/__init__.py                    |   2 +-
 python/tvm/relax/op/image/image.py                 |   2 +-
 python/tvm/relax/op/linear_algebra.py              |  27 ++++++
 python/tvm/relax/op/nn/__init__.py                 |   1 +
 python/tvm/relax/op/nn/nn.py                       |  21 ++++-
 .../relax/transform/legalize_ops/linear_algebra.py |  19 ++++
 python/tvm/script/ir_builder/relax/ir.py           |   2 +
 python/tvm/topi/image/resize.py                    |   6 +-
 python/tvm/topi/nn/conv2d.py                       |   5 +
 src/relax/op/tensor/linear_algebra.cc              |  38 ++++++++
 src/relax/op/tensor/linear_algebra.h               |   8 ++
 .../relax/test_frontend_from_exported_program.py   | 105 ++++++++++++++++++++-
 tests/python/relax/test_frontend_from_fx.py        |  83 ++++++++++++++--
 tests/python/relax/test_frontend_nn_op.py          |   4 +-
 tests/python/relax/test_op_nn.py                   |   5 +
 .../python/relax/test_transform_convert_layout.py  |   4 +-
 26 files changed, 494 insertions(+), 48 deletions(-)

Reply via email to