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 26c6b135e6 fix: MSVC pragma (#18674)
add d8c973e674 [RELAX][LAYOUT] Support for dynamic layout specification
(#18675)
add fed71ef6a6 [Relax] Add native size operator (#18667)
add 15ac9dbc73 [Relax][Onnx] Support Local Response Normalization (LRN)
(#18668)
add 4533d31488 [Relax] Add FDataDependent operator attribute for
LegalizeOps (#18664)
No new revisions were added by this update.
Summary of changes:
include/tvm/relax/transform.h | 5 +-
python/tvm/relax/frontend/onnx/onnx_frontend.py | 62 +++++++++++++-
python/tvm/relax/op/__init__.py | 1 +
python/tvm/relax/op/base.py | 28 +++++--
.../tvm/relax/transform/legalize_ops/inspect_op.py | 6 ++
python/tvm/relax/transform/transform.py | 10 ++-
python/tvm/script/ir_builder/relax/ir.py | 2 +
src/relax/op/op.cc | 26 ++++++
src/relax/op/tensor/index.cc | 3 +-
src/relax/transform/convert_layout.cc | 28 +++++--
src/relax/transform/legalize_ops.cc | 15 ++--
tests/python/relax/test_frontend_onnx.py | 27 ++++++
tests/python/relax/test_op_size.py | 63 ++++++++++++++
.../python/relax/test_transform_convert_layout.py | 95 +++++++++++++++++++++-
..._transform_legalize_ops_index_linear_algebra.py | 16 +++-
15 files changed, 355 insertions(+), 32 deletions(-)
create mode 100644 tests/python/relax/test_op_size.py