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 99d72fd593 [TIR][Schedule] Support padding-by-factor in PadEinsum
(#15168)
add 22e592b744 [FRONTEND][TFLITE][BugFix] Fix int16 transpose conv loading
(#15173)
add 6cf5b0928a [microNPU][ETHOSU] Fix compiler attributes types (#15159)
add e504d5d884 [RUNTIME] Add weak symbol to builtin fp16 (#15182)
add 9710d81650 [Testing] Utility method to run TVM on remote device
(#15179)
No new revisions were added by this update.
Summary of changes:
cmake/modules/LibInfo.cmake | 1 +
python/tvm/relay/backend/contrib/ethosu/util.py | 8 +-
python/tvm/relay/frontend/tflite.py | 3 +-
python/tvm/testing/__init__.py | 37 +++--
python/tvm/testing/rpc_run.py | 162 +++++++++++++++++++++
python/tvm/testing/utils.py | 3 +
src/relay/backend/contrib/ethosu/compiler_attrs.cc | 28 ++--
src/relay/qnn/op/convolution_transpose.cc | 2 +-
src/runtime/builtin_fp16.cc | 2 +-
src/support/libinfo.cc | 1 +
.../contrib/test_ethosu/test_attr_passing.py | 67 ++++++++-
tests/python/driver/tvmc/test_target_options.py | 14 ++
tests/python/frontend/tflite/test_forward.py | 80 ++++++++++
13 files changed, 372 insertions(+), 36 deletions(-)
create mode 100644 python/tvm/testing/rpc_run.py