You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tvm.apache.org by lu...@apache.org on 2022/08/12 15:31:40 UTC

[tvm] branch main updated (d874a8ed52 -> 1de32b587b)

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

lukhut pushed a change to branch main
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)

No new revisions were added by this update.

Summary of changes:
 CMakeLists.txt                                     |   1 +
 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/task_python_docs.sh                  |   2 +
 13 files changed, 470 insertions(+), 41 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