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/09/07 23:55:47 UTC

[tvm] branch main updated (6dea994 -> 1dc1707)

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

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


    from 6dea994  [UnitTest][Vulkan] Runnable relay unit tests on Vulkan (#8947)
     add 1dc1707  [CMSIS-NN] code generator for softmax (#8833)

No new revisions were added by this update.

Summary of changes:
 CMakeLists.txt                                     |   2 +
 .../modules/contrib/CMSISNN.cmake                  |  10 +-
 python/tvm/driver/tvmc/composite_target.py         |   5 +
 python/tvm/relay/backend/__init__.py               |   1 +
 .../_ctypes => relay/backend/contrib}/__init__.py  |   3 +-
 .../backend/contrib/cmsisnn}/__init__.py           |   3 +-
 .../tvm/relay/backend/contrib/cmsisnn/codegen.py   | 134 ++++++++++++++
 python/tvm/relay/op/contrib/cmsisnn.py             |   8 +-
 .../backend/contrib/cmsisnn/codegen_cmsisnn.cc     | 205 +++++++++++++++++++++
 tests/python/contrib/test_cmsisnn/test_networks.py | 137 ++++++++++++++
 tests/python/contrib/test_cmsisnn/test_softmax.py  | 121 ++++++++++--
 tests/python/driver/tvmc/conftest.py               |  10 +
 tests/python/driver/tvmc/test_compiler.py          |  33 ++++
 tests/scripts/task_config_build_cpu.sh             |   1 +
 14 files changed, 651 insertions(+), 22 deletions(-)
 copy apps/rocm_rpc/start_rpc_server.sh => cmake/modules/contrib/CMSISNN.cmake (78%)
 mode change 100755 => 100644
 copy python/tvm/{_ffi/_ctypes => relay/backend/contrib}/__init__.py (91%)
 copy python/tvm/{_ffi/_ctypes => relay/backend/contrib/cmsisnn}/__init__.py (92%)
 create mode 100644 python/tvm/relay/backend/contrib/cmsisnn/codegen.py
 create mode 100644 src/relay/backend/contrib/cmsisnn/codegen_cmsisnn.cc
 create mode 100644 tests/python/contrib/test_cmsisnn/test_networks.py