This is an automated email from the ASF dual-hosted git repository.
echuraev pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/tvm.git
from 1d89071863 [TVMScript] More concise `T.allocate` syntax printing
(#13830)
add 1f40b925a5 [TOOL][NATIVE] Android native application for deploy and
run (#13791)
No new revisions were added by this update.
Summary of changes:
.gitmodules | 3 +
3rdparty/cnpy | 1 +
CMakeLists.txt | 4 +
LICENSE | 1 +
apps/cpp_rtvm/CMakeLists.txt | 98 ++++++
apps/cpp_rtvm/README.md | 354 +++++++++++++++++++++
apps/cpp_rtvm/main.cc | 264 +++++++++++++++
.../cpp_rtvm/scripts/download_models.py | 28 +-
apps/cpp_rtvm/tvm_runner.cc | 320 +++++++++++++++++++
apps/cpp_rtvm/tvm_runner.h | 93 ++++++
cmake/config.cmake | 3 +
cmake/modules/LibInfo.cmake | 1 +
python/tvm/driver/tvmc/composite_target.py | 5 +
python/tvm/relay/op/contrib/clml.py | 2 +-
src/auto_scheduler/search_task.cc | 8 +
src/runtime/graph_executor/graph_executor.cc | 44 ++-
src/runtime/graph_executor/graph_executor.h | 6 +
src/support/libinfo.cc | 5 +
tests/scripts/task_build_adreno_bins.sh | 3 +-
19 files changed, 1227 insertions(+), 16 deletions(-)
create mode 160000 3rdparty/cnpy
create mode 100644 apps/cpp_rtvm/CMakeLists.txt
create mode 100644 apps/cpp_rtvm/README.md
create mode 100644 apps/cpp_rtvm/main.cc
copy ci/scripts/jenkins/http_utils.py =>
apps/cpp_rtvm/scripts/download_models.py (60%)
create mode 100644 apps/cpp_rtvm/tvm_runner.cc
create mode 100644 apps/cpp_rtvm/tvm_runner.h