You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tvm.apache.org by ar...@apache.org on 2021/10/13 15:02:20 UTC

[tvm] branch ci-docker-staging updated (5360f37 -> 55aa699)

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

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


    omit 5360f37  Update ci_i386 to v0.74.
     add b48c9ef  Contributing the STM32 port (#7742)
     add c5676f7  Update ci_i386 to v0.74. (#9211)
     add d3f2ea4  fix (#9205)
     add 0ed3a92  Arm(R) Cortex(R)-M55 CPU and Arm(R) Ethos(TM)-U55 NPU Demo App (#8922)
     add 05f11ad  Add dilation to MaxPool2DAttrs Rust bindings (#9215)
     add 26c3510  [PyTorch][Frontend] Semantic difference of 'bias_add' between relay and pytorch (#9204)
     add 2dae303  Adding annotations for tir.allocate (#9168)
     new 55aa699  Bump ci-gpu to v0.78.

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   (5360f37)
            \
             N -- N -- N   refs/heads/ci-docker-staging (55aa699)

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:
 Jenkinsfile                                        |    2 +-
 apps/microtvm/ethosu/Makefile                      |  110 ++
 apps/microtvm/ethosu/README.md                     |   91 ++
 .../microtvm/ethosu}/arm-none-eabi-gcc.cmake       |    8 +-
 apps/microtvm/ethosu/convert_image.py              |   73 ++
 .../microtvm/ethosu/convert_labels.py              |   35 +-
 .../aot => apps/microtvm/ethosu}/corstone300.ld    |    0
 .../ethosu/include/crt_config.h}                   |   14 +-
 .../microtvm/ethosu/include}/ethosu_55.h           |    6 +-
 .../microtvm/ethosu/include}/ethosu_mod.h          |   20 +-
 .../microtvm/ethosu/include/tvm_runtime.h          |   58 +-
 apps/microtvm/ethosu/requirements.txt              |  259 ++++
 apps/microtvm/ethosu/run_demo.sh                   |  130 ++
 apps/microtvm/ethosu/src/demo.c                    |   66 +
 include/tvm/tir/stmt.h                             |   14 +-
 .../{script => micro/contrib/stm32}/__init__.py    |   41 +-
 python/tvm/micro/contrib/stm32/emitter.py          | 1366 ++++++++++++++++++++
 python/tvm/relay/frontend/pytorch.py               |    2 +-
 python/tvm/script/tir/scope_handler.py             |   16 +-
 python/tvm/tir/stmt.py                             |   16 +-
 rust/tvm/src/ir/relay/attrs/nn.rs                  |    1 +
 src/arith/iter_affine_map.cc                       |   13 +
 src/printer/tir_text_printer.cc                    |   12 +-
 src/printer/tvmscript_printer.cc                   |   10 +
 src/runtime/crt/contrib/stm32/ai_runtime_api.c     |  356 +++++
 src/runtime/crt/contrib/stm32/ai_runtime_api.h     |  244 ++++
 .../runtime/crt/contrib/stm32/crt_config.h         |   14 +-
 src/runtime/crt/contrib/stm32/runtime.c            |   94 ++
 src/tir/ir/stmt.cc                                 |    7 +-
 tests/crt/contrib/stm32/Makefile                   |   88 ++
 tests/crt/contrib/stm32/src/main.c                 |  461 +++++++
 tests/micro/stm32/.clang-format                    |    2 +
 .../__init__.py => tests/micro/stm32/conftest.py   |    3 +-
 tests/micro/stm32/test_code_emitter.py             |  395 ++++++
 tests/python/frontend/pytorch/test_forward.py      |    2 +
 tests/python/unittest/test_tir_nodes.py            |   33 +
 .../unittest/test_tir_schedule_split_fuse.py       |   38 +
 tests/python/unittest/test_tvmscript_roundtrip.py  |   27 +
 tests/scripts/task_python_microtvm.sh              |    2 +
 39 files changed, 4009 insertions(+), 120 deletions(-)
 create mode 100644 apps/microtvm/ethosu/Makefile
 create mode 100644 apps/microtvm/ethosu/README.md
 copy {tests/python/contrib/test_ethosu/reference_system => apps/microtvm/ethosu}/arm-none-eabi-gcc.cmake (90%)
 create mode 100755 apps/microtvm/ethosu/convert_image.py
 copy rust/tvm-graph-rt/tests/test_tvm_basic/src/build_test_lib.py => apps/microtvm/ethosu/convert_labels.py (53%)
 copy {tests/python/relay/aot => apps/microtvm/ethosu}/corstone300.ld (100%)
 copy apps/{bundle_deploy/backtrace.h => microtvm/ethosu/include/crt_config.h} (80%)
 copy {tests/python/contrib/test_ethosu/reference_system => apps/microtvm/ethosu/include}/ethosu_55.h (86%)
 copy {tests/python/contrib/test_ethosu/reference_system => apps/microtvm/ethosu/include}/ethosu_mod.h (60%)
 copy golang/src/gotvm.h => apps/microtvm/ethosu/include/tvm_runtime.h (50%)
 create mode 100644 apps/microtvm/ethosu/requirements.txt
 create mode 100755 apps/microtvm/ethosu/run_demo.sh
 create mode 100644 apps/microtvm/ethosu/src/demo.c
 copy python/tvm/{script => micro/contrib/stm32}/__init__.py (84%)
 mode change 100644 => 100755
 create mode 100644 python/tvm/micro/contrib/stm32/emitter.py
 create mode 100644 src/runtime/crt/contrib/stm32/ai_runtime_api.c
 create mode 100644 src/runtime/crt/contrib/stm32/ai_runtime_api.h
 copy apps/ios_rpc/tvmrpc/AppDelegate.h => src/runtime/crt/contrib/stm32/crt_config.h (67%)
 create mode 100644 src/runtime/crt/contrib/stm32/runtime.c
 create mode 100644 tests/crt/contrib/stm32/Makefile
 create mode 100644 tests/crt/contrib/stm32/src/main.c
 create mode 100644 tests/micro/stm32/.clang-format
 copy vta/python/vta/exec/__init__.py => tests/micro/stm32/conftest.py (95%)
 create mode 100644 tests/micro/stm32/test_code_emitter.py

[tvm] 01/01: Bump ci-gpu to v0.78.

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

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

commit 55aa69948ab4b900b4f809c307a531d36f9b8574
Author: Andrew Reusch <ar...@octoml.ai>
AuthorDate: Wed Oct 13 07:59:38 2021 -0700

    Bump ci-gpu to v0.78.
---
 Jenkinsfile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Jenkinsfile b/Jenkinsfile
index 6a7a1f4..6f3364b 100755
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -46,7 +46,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.77"
+ci_gpu = "tlcpack/ci-gpu:v0.78"
 ci_cpu = "tlcpack/ci-cpu:v0.78"
 ci_wasm = "tlcpack/ci-wasm:v0.71"
 ci_i386 = "tlcpack/ci-i386:v0.74"