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

Reply via email to