This is an automated email from the ASF dual-hosted git repository.
tqchen pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-tvm.git.
from 5b4cf5d [VTA][Chisel,de10nano] Chisel fixes and de10nano support
(#4986)
add 450f716 [Runtime] MISRA-C compliant TVM runtime (#3934)
No new revisions were added by this update.
Summary of changes:
apps/bundle_deploy/Makefile | 68 +-
apps/bundle_deploy/README.md | 9 +-
apps/bundle_deploy/build_model.py | 75 ++-
apps/bundle_deploy/bundle.c | 89 +++
apps/bundle_deploy/bundle.cc | 10 +-
apps/bundle_deploy/demo.cc | 63 +-
apps/bundle_deploy/runtime.c | 52 ++
apps/bundle_deploy/test.cc | 136 ++++
.../utvm_runtime_api.cc => crt/crt_backend_api.c} | 25 +-
src/runtime/crt/crt_runtime_api.c | 108 ++++
src/runtime/crt/graph_runtime.c | 682 +++++++++++++++++++++
src/runtime/crt/graph_runtime.h | 204 ++++++
src/runtime/crt/load_json.c | 359 +++++++++++
src/runtime/crt/load_json.h | 92 +++
src/runtime/{builtin_fp16.cc => crt/module.h} | 57 +-
src/runtime/crt/ndarray.c | 115 ++++
src/runtime/crt/ndarray.h | 58 ++
src/runtime/crt/packed_func.h | 141 +++++
tests/scripts/task_python_integration.sh | 8 +-
19 files changed, 2263 insertions(+), 88 deletions(-)
create mode 100644 apps/bundle_deploy/bundle.c
create mode 100644 apps/bundle_deploy/runtime.c
create mode 100644 apps/bundle_deploy/test.cc
copy src/runtime/{micro/standalone/utvm_runtime_api.cc =>
crt/crt_backend_api.c} (72%)
create mode 100644 src/runtime/crt/crt_runtime_api.c
create mode 100644 src/runtime/crt/graph_runtime.c
create mode 100644 src/runtime/crt/graph_runtime.h
create mode 100644 src/runtime/crt/load_json.c
create mode 100644 src/runtime/crt/load_json.h
copy src/runtime/{builtin_fp16.cc => crt/module.h} (55%)
create mode 100644 src/runtime/crt/ndarray.c
create mode 100644 src/runtime/crt/ndarray.h
create mode 100644 src/runtime/crt/packed_func.h