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 c0a47ed139 [CUBLAS][FP8] Enable R.matmul + R.multiply offloading
(#16974)
add 4c1ebcf81a [Relax] Implement relax.op.view (#16955)
add fffd168d00 [Unity][BYOC] Use arith.Analyzer to check batch equality of
matmul in cublas (#16982)
No new revisions were added by this update.
Summary of changes:
python/tvm/relax/backend/contrib/cublas.py | 5 +-
python/tvm/relax/expr.py | 15 +-
python/tvm/relax/op/memory/__init__.py | 1 +
python/tvm/relax/op/memory/view.py | 94 +++
python/tvm/relax/struct_info.py | 7 +-
python/tvm/script/parser/relax/entry.py | 18 +-
python/tvm/script/parser/relax/parser.py | 2 +-
src/relax/ir/expr.cc | 11 +-
src/relax/op/memory/view.cc | 359 +++++++++++
src/relax/op/{distributed/nn.h => memory/view.h} | 18 +-
tests/python/relax/test_codegen_cublas.py | 2 +
tests/python/relax/test_op_view.py | 776 +++++++++++++++++++++++
12 files changed, 1284 insertions(+), 24 deletions(-)
create mode 100644 python/tvm/relax/op/memory/view.py
create mode 100644 src/relax/op/memory/view.cc
copy src/relax/op/{distributed/nn.h => memory/view.h} (70%)
create mode 100644 tests/python/relax/test_op_view.py