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

[tvm] branch main updated (80beda7 -> 9cd07e4)

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

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


    from 80beda7  Hexagon conv2d full output slice  (#9198)
     add 9cd07e4  [Hexagon] Add hexagon launcher to apps and add to TVM's build system (#9220)

No new revisions were added by this update.

Summary of changes:
 .../launcher => apps/hexagon_launcher}/README.md   |  47 ++++++-
 apps/hexagon_launcher/cmake/HexagonLauncher.cmake  |  61 ++++++++
 apps/hexagon_launcher/cmake/android/CMakeLists.txt |  77 ++++++++++
 apps/hexagon_launcher/cmake/hexagon/CMakeLists.txt |  84 +++++++++++
 .../hexagon_launcher}/launcher_android.cc          |   0
 .../hexagon_launcher}/launcher_core.cc             |   0
 .../hexagon_launcher}/launcher_core.h              |   0
 .../hexagon_launcher}/launcher_hexagon.cc          |   0
 .../hexagon_launcher}/launcher_main.cc             |   0
 .../hexagon_launcher}/launcher_rpc.idl             |   0
 .../hexagon_launcher}/launcher_util.cc             |   0
 .../hexagon_launcher}/launcher_util.h              |   0
 cmake/config.cmake                                 |   3 +
 cmake/modules/Hexagon.cmake                        |  81 +++++++++--
 src/runtime/hexagon/launcher/CMakeLists.txt        | 156 ---------------------
 15 files changed, 339 insertions(+), 170 deletions(-)
 rename {src/runtime/hexagon/launcher => apps/hexagon_launcher}/README.md (76%)
 create mode 100644 apps/hexagon_launcher/cmake/HexagonLauncher.cmake
 create mode 100644 apps/hexagon_launcher/cmake/android/CMakeLists.txt
 create mode 100644 apps/hexagon_launcher/cmake/hexagon/CMakeLists.txt
 rename {src/runtime/hexagon/launcher => apps/hexagon_launcher}/launcher_android.cc (100%)
 rename {src/runtime/hexagon/launcher => apps/hexagon_launcher}/launcher_core.cc (100%)
 rename {src/runtime/hexagon/launcher => apps/hexagon_launcher}/launcher_core.h (100%)
 rename {src/runtime/hexagon/launcher => apps/hexagon_launcher}/launcher_hexagon.cc (100%)
 rename {src/runtime/hexagon/launcher => apps/hexagon_launcher}/launcher_main.cc (100%)
 rename {src/runtime/hexagon/launcher => apps/hexagon_launcher}/launcher_rpc.idl (100%)
 rename {src/runtime/hexagon/launcher => apps/hexagon_launcher}/launcher_util.cc (100%)
 rename {src/runtime/hexagon/launcher => apps/hexagon_launcher}/launcher_util.h (100%)
 delete mode 100644 src/runtime/hexagon/launcher/CMakeLists.txt