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 2019/11/22 23:31:57 UTC

[incubator-tvm] branch master updated (7429997 -> e081051)

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 7429997  [LICENSE] add 3rdparty licenses (#4402)
     add e081051  [TVM][RUNTIME] A minimum example to generate external library wrappers for DSOModule (#4280)

No new revisions were added by this update.

Summary of changes:
 CMakeLists.txt                                     |   6 +
 cmake/config.cmake                                 |   3 +
 include/tvm/runtime/module.h                       |   2 +-
 python/tvm/module.py                               |   7 +-
 src/codegen/source_module.cc                       |   3 +
 .../example_ext_runtime/example_ext_runtime.cc     | 344 +++++++++++++
 src/runtime/dso_module.cc                          |   2 +-
 src/runtime/graph/graph_runtime.cc                 |   2 +-
 tests/python/relay/test_external_runtime.py        | 558 +++++++++++++++++++++
 9 files changed, 923 insertions(+), 4 deletions(-)
 create mode 100644 src/runtime/contrib/example_ext_runtime/example_ext_runtime.cc
 create mode 100644 tests/python/relay/test_external_runtime.py