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 a320b63198 [Unity][Cutlass] Fix C source generation of dense operation
(#16476)
add 20d769617f [Relax] Express dynamic arguments of strided_slice as
arguments (#16826)
No new revisions were added by this update.
Summary of changes:
include/tvm/relax/attrs/index.h | 11 -
python/tvm/relax/__init__.py | 6 +
python/tvm/relax/op/index.py | 12 +-
python/tvm/relax/transform/legalize_ops/index.py | 39 +-
python/tvm/relax/type_converter.py | 179 +++++++++
python/tvm/relax/utils.py | 150 +-------
.../msc/framework/tensorrt/transform_tensorrt.cc | 10 +-
src/relax/analysis/struct_info_analysis.cc | 34 +-
src/relax/op/tensor/index.cc | 403 ++++++++++++++++-----
src/relax/op/tensor/index.h | 6 +-
src/relax/transform/convert_layout.cc | 19 +-
src/relax/transform/infer_layout_utils.h | 4 +-
src/relax/utils.cc | 43 ---
src/script/ir_builder/relax/ir.cc | 10 +
tests/python/contrib/test_msc/test_graph_build.py | 3 +
.../contrib/test_msc/test_translate_relax.py | 3 +
.../contrib/test_msc/test_translate_tensorflow.py | 4 +
.../contrib/test_msc/test_translate_torch.py | 3 +
tests/python/relax/test_dataflow_pattern.py | 28 +-
tests/python/relax/test_op_index.py | 43 ++-
20 files changed, 653 insertions(+), 357 deletions(-)
create mode 100644 python/tvm/relax/type_converter.py