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/08/12 16:35:23 UTC

[tvm] branch aarch64_frontend_tests updated (e063201732 -> c44156032e)

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

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


    omit e063201732 [CI][aarch64] Enable ONNX and PyTorch tests on AArch64
     add d874a8ed52 [microNPU] Reorder copies and computes based on the cycle count (#11591)
     add 1de32b587b [Target] Add Target Parser for Arm(R) Cortex(R) M-Profile CPUs (#12319)
     add 369e8b2830 [ci] Default to n=2 for test parallelism (#12376)
     add c3c7c4ccc3 [Profiler] Fix graph_executor_debug hang (#12382)
     add c44156032e [CI][aarch64] Enable ONNX and PyTorch tests on AArch64

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   (e063201732)
            \
             N -- N -- N   refs/heads/aarch64_frontend_tests (c44156032e)

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.

No new revisions were added by this update.

Summary of changes:
 CMakeLists.txt                                     |   1 +
 Jenkinsfile                                        |  57 +++++-
 ci/jenkins/Jenkinsfile.j2                          |   2 +-
 ci/jenkins/macros.j2                               |   3 +
 include/tvm/runtime/profiling.h                    |   6 +-
 include/tvm/target/target_kind.h                   |   5 +
 python/tvm/contrib/debugger/debug_executor.py      |  49 ++++-
 python/tvm/contrib/graph_executor.py               |   7 +
 .../relay/backend/contrib/ethosu/tir/compiler.py   |   1 +
 .../tvm/relay/backend/contrib/ethosu/tir/passes.py |  35 +++-
 python/tvm/runtime/module.py                       |   6 +
 python/tvm/runtime/vm.py                           |   7 +
 python/tvm/target/target.py                        |   2 +-
 src/runtime/crt/common/crt_runtime_api.c           |  16 +-
 .../graph_executor/debug/graph_executor_debug.cc   |  55 +++---
 src/runtime/profiling.cc                           |  12 +-
 src/runtime/rpc/rpc_module.cc                      |  33 ++--
 .../utils.cc => target/parsers/cpu.cc}             |  25 ++-
 include/tvm/relay/op.h => src/target/parsers/cpu.h |  29 +--
 src/target/parsers/mprofile.cc                     | 131 +++++++++++++
 .../target/parsers/mprofile.h                      |  28 +--
 src/target/target_kind.cc                          |   7 +-
 src/tir/contrib/ethosu/passes.cc                   | 158 +++++++++++++--
 tests/cpp/target/parsers/mprofile_test.cc          | 218 +++++++++++++++++++++
 .../test_ethosu/test_copy_compute_reordering.py    | 210 ++++++++++++++++++++
 tests/python/driver/tvmc/test_target_options.py    |   2 +-
 .../python/unittest/test_target_parser_mprofile.py |  60 ++++++
 tests/python/unittest/test_target_target.py        |   1 -
 tests/scripts/setup-pytest-env.sh                  |   8 +-
 tests/scripts/task_python_docs.sh                  |   2 +
 web/emcc/tvmjs_support.cc                          |  22 ++-
 web/src/runtime.ts                                 |   7 +-
 32 files changed, 1077 insertions(+), 128 deletions(-)
 copy src/{auto_scheduler/utils.cc => target/parsers/cpu.cc} (72%)
 mode change 100755 => 100644
 copy include/tvm/relay/op.h => src/target/parsers/cpu.h (69%)
 create mode 100644 src/target/parsers/mprofile.cc
 copy include/tvm/runtime/executor_info.h => src/target/parsers/mprofile.h (65%)
 create mode 100644 tests/cpp/target/parsers/mprofile_test.cc
 create mode 100644 tests/python/unittest/test_target_parser_mprofile.py