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 24847c5515 [IR] Implemented Variant<...> container (#15672)
add e2e1d44c7c [TFLite][Frontend] Support quantized floor_mod (#15733)
add 67df20faee [Target][TOPI] Use LLVM for x86 CPU feature lookup (#15685)
No new revisions were added by this update.
Summary of changes:
include/tvm/target/target_kind.h | 4 +-
python/tvm/relay/frontend/tflite.py | 6 +-
python/tvm/relay/qnn/op/legalizations.py | 5 +-
python/tvm/relay/qnn/op/qnn.py | 7 +-
python/tvm/target/codegen.py | 32 ++++
python/tvm/target/x86.py | 161 +++++--------------
python/tvm/topi/x86/batch_matmul.py | 16 +-
python/tvm/topi/x86/conv2d_int8.py | 10 +-
python/tvm/topi/x86/dense.py | 16 +-
python/tvm/topi/x86/dense_alter_op.py | 11 +-
python/tvm/topi/x86/tensor_intrin.py | 10 +-
.../space_generator/space_generator.cc | 23 +--
src/relay/qnn/op/requantize.cc | 9 +-
src/relay/qnn/op/requantize_config.h | 13 +-
src/target/llvm/llvm_module.cc | 156 ++++++++++++++++++
tests/python/frontend/tflite/test_forward.py | 13 +-
tests/python/target/test_x86_features.py | 176 +++++++++++++++++++++
17 files changed, 485 insertions(+), 183 deletions(-)
create mode 100644 tests/python/target/test_x86_features.py