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 6fb961a945 [CI] Include static builds of the runtime as part of CI
(#13612)
add c36ae1cb3a [Arith][UnitTest] Parametrize tests of RewriteSimplifier
(#13923)
add 2e30e772a7 [CMSIS-NN] Add int16 add and mul operator support (#13920)
add 3ee29e38d8 [PyTorch] Fix in matmul function that enables working with
all sizes … (#13927)
add 36f45bb562 [Metaschedule,Fix] Move x86 feature detection to target
directory for metaschedule (#13925)
add 45a92df36a [TVMScript] Support `show_meta` (#13934)
add cf721d4c34 [TIR] Allow TransformLayout index_map to contain RVs
(#13930)
No new revisions were added by this update.
Summary of changes:
include/tvm/node/repr_printer.h | 2 +
include/tvm/node/script_printer.h | 6 +
include/tvm/script/printer/ir_docsifier.h | 9 +-
include/tvm/tir/index_map.h | 23 +-
.../tvm/meta_schedule/space_generator/__init__.py | 2 +
python/tvm/relay/frontend/pytorch.py | 119 +-
python/tvm/relay/op/contrib/cmsisnn.py | 31 +-
python/tvm/relay/qnn/op/legalizations.py | 2 +-
python/tvm/relay/qnn/op/qnn.py | 2 +-
python/tvm/runtime/script_printer.py | 113 +-
python/tvm/script/ir_builder/tir/ir.py | 12 +-
python/tvm/{topi/x86/utils.py => target/x86.py} | 21 +-
python/tvm/tir/schedule/trace.py | 5 +-
python/tvm/topi/x86/batch_matmul.py | 4 +-
python/tvm/topi/x86/conv2d_avx_1x1.py | 7 +-
python/tvm/topi/x86/conv2d_avx_common.py | 4 +-
python/tvm/topi/x86/conv2d_int8.py | 13 +-
python/tvm/topi/x86/conv3d.py | 14 +-
python/tvm/topi/x86/dense.py | 10 +-
python/tvm/topi/x86/dense_alter_op.py | 13 +-
python/tvm/topi/x86/depthwise_conv2d.py | 15 +-
python/tvm/topi/x86/group_conv2d.py | 12 +-
python/tvm/topi/x86/sparse.py | 7 +-
python/tvm/topi/x86/tensor_intrin.py | 2 +-
python/tvm/utils/roofline/x86.py | 6 +-
src/meta_schedule/database/database_utils.cc | 2 +-
.../space_generator/space_generator.cc | 4 +-
src/node/repr_printer.cc | 12 +-
src/node/script_printer.cc | 6 +
src/relay/backend/contrib/cmsisnn/relay_to_tir.cc | 104 +-
.../backend/contrib/cmsisnn/tir_to_runtime.cc | 4 +-
src/relay/backend/te_compiler_cache.cc | 4 +-
src/relay/ir/function.cc | 8 +
src/relay/qnn/op/requantize.cc | 4 +-
src/relay/qnn/op/requantize_config.h | 4 +-
src/script/printer/ir/ir.cc | 30 +-
src/script/printer/ir/utils.h | 10 +-
src/script/printer/ir_docsifier.cc | 29 +-
src/script/printer/tir/expr.cc | 67 +-
src/script/printer/tir/function.cc | 65 +-
src/script/printer/tir/utils.h | 34 +-
src/script/printer/utils.h | 79 +-
src/tir/ir/index_map.cc | 98 +-
src/tir/schedule/concrete_schedule.cc | 8 +-
src/tir/schedule/instruction.cc | 2 +
.../schedule/primitive/layout_transformation.cc | 27 +-
src/tir/schedule/trace.cc | 54 +-
src/tir/schedule/traced_schedule.cc | 4 +-
.../python/contrib/test_cmsisnn/test_binary_ops.py | 127 +-
tests/python/frontend/pytorch/test_forward.py | 77 +-
.../python/unittest/test_arith_rewrite_simplify.py | 1912 ++++++++++----------
.../unittest/test_tir_schedule_transform_layout.py | 9 +
52 files changed, 1814 insertions(+), 1424 deletions(-)
rename python/tvm/{topi/x86/utils.py => target/x86.py} (85%)