You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tvm.apache.org by le...@apache.org on 2022/01/06 15:40:08 UTC

[tvm] branch ci-docker-staging updated (92eeef6 -> 9f7b1bb)

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

leandron pushed a change to branch ci-docker-staging
in repository https://gitbox.apache.org/repos/asf/tvm.git.


    from 92eeef6  Calculate CMSIS-NN buffer size with respect to architecture extensions (#9338)
     add 72d3efe  [microNPU][2a] Add CascaderGraph for cascading analysis (#9469)
     add 94552fc  [Docker] Pin sphinx version to workaround sphinx-gallery bug (#9822)
     add 79cfb79  [M3c][MetaScheduler] Add ReplayFunc Search Strategy. (#9799)
     add 0173dc8  Usability fixes to CI runner script (#9752)
     add 33724bb  Add skip to flaky MacOS RPC test (#9753)
     add 818bd48  This patch is to fix some minor typos in project. (#9852)
     new 9f7b1bb  Testing ci-cpu update with tlcpackstaging/ci_cpu:20220105-225914-79cfb797e

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .gitignore                                         |   1 +
 Jenkinsfile                                        |   2 +-
 cmake/modules/contrib/EthosU.cmake                 |   7 +-
 docker/install/ubuntu_install_redis.sh             |   2 +-
 docker/install/ubuntu_install_sphinx.sh            |   2 +-
 docs/arch/inferbound.rst                           |   8 +-
 python/tvm/contrib/ethosu/cascader/__init__.py     |   4 +-
 python/tvm/contrib/ethosu/cascader/graph.py        | 170 +++++++++++
 .../ethosu/cascader/parts.py}                      |  29 +-
 .../tvm/meta_schedule/search_strategy/__init__.py  |   6 +-
 .../{replay_trace.py => replay_func.py}            |  27 +-
 src/contrib/ethosu/cascader/common.h               |  25 +-
 src/contrib/ethosu/cascader/graph.cc               | 257 +++++++++++++++++
 src/contrib/ethosu/cascader/graph.h                | 321 +++++++++++++++++++++
 src/contrib/ethosu/cascader/parts/inline.cc        |  66 +++++
 src/contrib/ethosu/cascader/parts/inline.h         |  80 +++++
 src/meta_schedule/mutator/mutator.cc               |  57 ++++
 .../schedule_rule.cc => postproc/postproc.cc}      |  34 +--
 .../{replay_trace.cc => replay_func.cc}            |  90 +++---
 .../contrib/test_ethosu/cascader/__init__.py       |   2 +-
 .../contrib/test_ethosu/cascader/test_graph.py     | 134 +++++++++
 tests/python/contrib/test_rpc_server_device.py     |   3 +
 .../unittest/test_meta_schedule_search_strategy.py |  15 +-
 tests/scripts/ci.py                                | 150 ++++++++--
 version.py                                         |   2 +-
 25 files changed, 1361 insertions(+), 133 deletions(-)
 create mode 100644 python/tvm/contrib/ethosu/cascader/graph.py
 copy python/tvm/{relay/transform/infer_layout_utils.py => contrib/ethosu/cascader/parts.py} (62%)
 mode change 100755 => 100644
 copy python/tvm/meta_schedule/search_strategy/{replay_trace.py => replay_func.py} (68%)
 create mode 100644 src/contrib/ethosu/cascader/graph.cc
 create mode 100644 src/contrib/ethosu/cascader/graph.h
 create mode 100644 src/contrib/ethosu/cascader/parts/inline.cc
 create mode 100644 src/contrib/ethosu/cascader/parts/inline.h
 create mode 100644 src/meta_schedule/mutator/mutator.cc
 copy src/meta_schedule/{schedule_rule/schedule_rule.cc => postproc/postproc.cc} (51%)
 copy src/meta_schedule/search_strategy/{replay_trace.cc => replay_func.cc} (56%)
 create mode 100644 tests/python/contrib/test_ethosu/cascader/test_graph.py

[tvm] 01/01: Testing ci-cpu update with tlcpackstaging/ci_cpu:20220105-225914-79cfb797e

Posted by le...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

leandron pushed a commit to branch ci-docker-staging
in repository https://gitbox.apache.org/repos/asf/tvm.git

commit 9f7b1bbc478a272a223046f1eec5db256c6fd5ff
Author: Leandro Nunes <le...@arm.com>
AuthorDate: Thu Jan 6 15:38:28 2022 +0000

    Testing ci-cpu update with tlcpackstaging/ci_cpu:20220105-225914-79cfb797e
---
 Jenkinsfile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Jenkinsfile b/Jenkinsfile
index a782204..c68a118 100755
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -47,7 +47,7 @@ import org.jenkinsci.plugins.pipeline.modeldefinition.Utils
 // NOTE: these lines are scanned by docker/dev_common.sh. Please update the regex as needed. -->
 ci_lint = "tlcpack/ci-lint:v0.67"
 ci_gpu = "tlcpack/ci-gpu:v0.78"
-ci_cpu = "tlcpack/ci-cpu:v0.79"
+ci_cpu = "tlcpackstaging/ci_cpu:20220105-225914-79cfb797e"
 ci_wasm = "tlcpack/ci-wasm:v0.71"
 ci_i386 = "tlcpack/ci-i386:v0.74"
 ci_qemu = "tlcpack/ci-qemu:v0.08"