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 7fd4704003 fix _convert_simple_rnn (#15723)
add a25843bf90 [Relay][TOPI] Remove input padding for arm_cpu conv2d int8
native schedule in Legalize pass (#15648)
add d1ede36cad [Target][Device] Auto detect target and create device from
str in torch style (#15714)
add 24847c5515 [IR] Implemented Variant<...> container (#15672)
No new revisions were added by this update.
Summary of changes:
include/tvm/runtime/container/variant.h | 123 ++++++++++++++++++++++++++++
include/tvm/runtime/packed_func.h | 54 +++++++++++-
python/tvm/runtime/ndarray.py | 19 ++++-
python/tvm/target/detect_target.py | 114 ++++++++++++++++++++++++++
python/tvm/target/target.py | 24 ++++++
python/tvm/topi/arm_cpu/conv2d_alter_op.py | 36 +++++++-
python/tvm/topi/arm_cpu/conv2d_gemm.py | 37 +++++++--
src/support/ffi_testing.cc | 12 +++
tests/cpp/container_test.cc | 47 +++++++++++
tests/python/relay/test_pass_legalize.py | 61 +++++++++++++-
tests/python/unittest/test_device.py | 71 ++++++++++++++++
tests/python/unittest/test_ir_container.py | 26 ++++++
tests/python/unittest/test_target_target.py | 45 ++++++++++
13 files changed, 652 insertions(+), 17 deletions(-)
create mode 100644 include/tvm/runtime/container/variant.h
create mode 100644 python/tvm/target/detect_target.py
create mode 100644 tests/python/unittest/test_device.py