You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tvm.apache.org by tq...@apache.org on 2020/07/15 03:07:55 UTC

[incubator-tvm] branch master updated (4ae8fd7 -> 9fcde21)

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 4ae8fd7  Build crttest and cpptest separately. (#6057)
     add 9fcde21  [RUNTIME] Support module based interface runtime (#5753)

No new revisions were added by this update.

Summary of changes:
 python/tvm/contrib/debugger/debug_runtime.py       |  13 +-
 python/tvm/contrib/graph_runtime.py                |  12 +-
 python/tvm/relay/backend/graph_runtime_factory.py  |  84 ++++
 python/tvm/relay/build_module.py                   |   9 +-
 src/runtime/graph/graph_runtime_factory.cc         | 175 +++++++
 src/runtime/graph/graph_runtime_factory.h          | 131 ++++++
 src/runtime/module.cc                              |   3 +-
 .../test_runtime_module_based_interface.py         | 520 +++++++++++++++++++++
 8 files changed, 927 insertions(+), 20 deletions(-)
 create mode 100644 python/tvm/relay/backend/graph_runtime_factory.py
 create mode 100644 src/runtime/graph/graph_runtime_factory.cc
 create mode 100644 src/runtime/graph/graph_runtime_factory.h
 create mode 100644 tests/python/unittest/test_runtime_module_based_interface.py