This is an automated email from the ASF dual-hosted git repository.
github-bot pushed a change to branch last-successful
in repository https://gitbox.apache.org/repos/asf/tvm.git
from 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)
No new revisions were added by this update.
Summary of changes:
CMakeLists.txt | 1 +
Jenkinsfile | 59 +++++-
ci/jenkins/Jenkinsfile.j2 | 2 +-
ci/jenkins/macros.j2 | 3 +
include/tvm/target/target_kind.h | 5 +
python/tvm/target/target.py | 2 +-
.../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 +-
tests/cpp/target/parsers/mprofile_test.cc | 218 +++++++++++++++++++++
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 +
17 files changed, 538 insertions(+), 45 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