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 d5fab9e4fb [TVMScript] Use environment variable TVM_BLACK_FORMAT for
.show() (#15762)
add c318fa8632 [Docker] Install oneflow from PyPi (#15819)
add cf8521ad5c [Target] LLVM helper functions for any target info (#15761)
add 0d683284b0 [Unittest][Metal] Add minimal metal functionality test to
CI (#15756)
add 73e7909a71 [TVMScript] Preserve traceback across TVMScript parsing
(#15824)
add cf081d9929 [BugFix][CPP] Fix cpp deploy bug (#15773)
No new revisions were added by this update.
Summary of changes:
.github/workflows/main.yml | 8 +
apps/howto_deploy/prepare_test_libs.py | 8 +-
cmake/modules/LLVM.cmake | 3 +
docker/install/ubuntu_install_oneflow.sh | 2 +-
python/tvm/script/parser/core/parser.py | 13 +-
python/tvm/target/codegen.py | 93 ++++++++--
python/tvm/target/x86.py | 28 +--
python/tvm/topi/x86/batch_matmul.py | 8 +-
python/tvm/topi/x86/dense.py | 9 +-
python/tvm/topi/x86/dense_alter_op.py | 5 +-
.../space_generator/space_generator.cc | 19 +-
src/relay/qnn/op/requantize.cc | 6 +-
src/relay/qnn/op/requantize_config.h | 6 +-
src/target/llvm/codegen_x86_64.cc | 39 +---
src/target/llvm/llvm_instance.cc | 154 +++++++++++++++-
src/target/llvm/llvm_instance.h | 30 ++++
src/target/llvm/llvm_module.cc | 197 ++++++---------------
tests/python/relay/test_op_level2.py | 5 +-
tests/python/relay/test_op_qnn_conv2_transpose.py | 2 +-
tests/python/relay/test_op_qnn_conv2d.py | 4 +-
tests/python/relay/test_pass_alter_op_layout.py | 6 +-
tests/python/relay/test_pass_qnn_legalize.py | 14 +-
tests/python/target/test_llvm_features_info.py | 104 +++++++++++
tests/python/target/test_x86_features.py | 155 ++++++++--------
tests/python/unittest/test_allreduce.py | 44 +++++
tests/python/unittest/test_target_codegen_llvm.py | 2 +-
26 files changed, 610 insertions(+), 354 deletions(-)
create mode 100644 tests/python/target/test_llvm_features_info.py