You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tvm.apache.org by ma...@apache.org on 2021/09/15 12:01:16 UTC

[tvm] branch main updated (dd7d830 -> 9bc4dc0)

This is an automated email from the ASF dual-hosted git repository.

masahi pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/tvm.git.


    from dd7d830  [Hexagon] `llvm-options` attribute is an array of strings (#9011)
     add 9bc4dc0  [Runtime] Pipeline Executor Initial patch. (#8702)

No new revisions were added by this update.

Summary of changes:
 CMakeLists.txt                                     |   6 +
 cmake/config.cmake                                 |   3 +
 python/tvm/contrib/pipeline_executor.py            | 543 +++++++++++++++++++++
 .../runtime/pipeline/pipeline_executor.cc          |  43 +-
 src/runtime/pipeline/pipeline_executor.h           |  61 +++
 tests/python/relay/test_pipeline_executor.py       | 239 +++++++++
 6 files changed, 873 insertions(+), 22 deletions(-)
 create mode 100644 python/tvm/contrib/pipeline_executor.py
 copy include/tvm/runtime/container/closure.h => src/runtime/pipeline/pipeline_executor.cc (51%)
 create mode 100644 src/runtime/pipeline/pipeline_executor.h
 create mode 100644 tests/python/relay/test_pipeline_executor.py