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/12/08 15:53:49 UTC

[tvm] branch ci-docker-staging updated (91e901b -> 6305c7d)

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

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


 discard 91e901b  [CI] Update ci_cpu docker image
     add 00db4db  Options to create test directory and print commands in AOT Test Runner (#9638)
     add 3371a76  [microNPU] Add support for SIGMOID (#9627)
     add fcea393  Add top level redirect from tutorials to tutorial (#9673)
     add b54beed  [TVMC][MicroTVM] Fix tvmc micro `project_dir` arg relative path (#9663)
     add e8889ae  [TVMScript] Add syntax sugar for T.handle and T.match_buffer (#9492)
     new 6305c7d  [CI] Update ci_cpu docker image

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (91e901b)
            \
             N -- N -- N   refs/heads/ci-docker-staging (6305c7d)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

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:
 docker/install/ubuntu_install_python_package.sh    |  2 +-
 docs/legacy_redirect.py                            |  1 +
 python/gen_requirements.py                         |  2 +-
 python/tvm/driver/tvmc/common.py                   | 11 ++-
 python/tvm/driver/tvmc/micro.py                    | 27 +++----
 python/tvm/driver/tvmc/runner.py                   |  6 +-
 python/tvm/relay/backend/contrib/ethosu/codegen.py |  2 +-
 .../tvm/relay/backend/contrib/ethosu/legalize.py   | 84 ++++++++++++++++++----
 .../relay/backend/contrib/ethosu/te/convolution.py |  6 +-
 .../relay/backend/contrib/ethosu/te/depthwise.py   |  6 +-
 .../relay/backend/contrib/ethosu/te/identity.py    |  6 +-
 .../tvm/relay/backend/contrib/ethosu/te/pooling.py |  6 +-
 python/tvm/relay/op/contrib/ethosu.py              | 37 ++++++++--
 python/tvm/script/parser.py                        | 61 +++++++++++++---
 python/tvm/script/tir/__init__.py                  |  2 +-
 python/tvm/script/tir/ty.py                        | 73 +++++++++++++++++++
 tests/micro/common/test_tvmc.py                    | 37 +++++++---
 tests/python/contrib/test_ethosu/test_codegen.py   | 74 +++++--------------
 tests/python/contrib/test_ethosu/test_legalize.py  | 53 ++++++++++++++
 .../contrib/test_ethosu/test_lookup_table.py       |  2 +-
 .../contrib/test_ethosu/test_lut_optimizer.py      |  4 +-
 .../contrib/test_ethosu/test_replace_conv2d.py     |  2 +-
 .../test_ethosu/test_replace_depthwise_conv2d.py   |  2 +-
 tests/python/relay/aot/aot_test_utils.py           | 29 ++++++--
 .../python/unittest/test_tvmscript_syntax_sugar.py | 45 ++++++++++++
 tests/scripts/task_ci_setup.sh                     |  2 +-
 26 files changed, 450 insertions(+), 132 deletions(-)

[tvm] 01/01: [CI] Update ci_cpu docker image

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

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

commit 6305c7d5425159b58097fedfd94e0a0e6aa299f2
Author: Manupa Karunaratne <ma...@arm.com>
AuthorDate: Tue Dec 7 12:07:24 2021 +0000

    [CI] Update ci_cpu docker image
    
    This commit updates the Jenkinsfile to use
    tlcpackstaging/ci_cpu:20211206-124834-9c4115320 as
    the ci_cpu docker image.
    
    Change-Id: I9cdfb50c5ad4e67b5c4bf4d2f042ea241ed4f911
---
 Jenkinsfile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Jenkinsfile b/Jenkinsfile
index 29e844c..e51c423 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:20211206-124834-9c4115320"
 ci_wasm = "tlcpack/ci-wasm:v0.71"
 ci_i386 = "tlcpack/ci-i386:v0.74"
 ci_qemu = "tlcpack/ci-qemu:v0.08"