You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tvm.apache.org by jr...@apache.org on 2021/10/26 21:41:20 UTC

[tvm] branch main updated (f7430e9 -> 404fbf7)

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

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


    from f7430e9  Support runtime defined function wrapping of library module packed functions (#9342)
     add 404fbf7  [Hexagon] Refactor directory structure to accommodate new runtime (#9354)

No new revisions were added by this update.

Summary of changes:
 cmake/modules/Hexagon.cmake                        |  13 ++-
 .../{hexagon_module.h => android/hexagon_device.h} |  29 +-----
 .../hexagon/{ => android}/hexagon_device_api.cc    |   2 +-
 .../hexagon/{ => android}/hexagon_module.cc        |   6 +-
 src/runtime/hexagon/{ => android}/hexagon_posix.cc |   0
 .../{ => android}/sim/driver/CMakeLists.txt        |   4 +-
 .../hexagon/{ => android}/sim/driver/README.md     |   0
 .../{ => android}/sim/driver/fake_pthread.cc       |   0
 .../hexagon/{ => android}/sim/driver/pthread.h     |   6 +-
 .../hexagon/{ => android}/sim/driver/sched.h       |   6 +-
 .../hexagon/{ => android}/sim/driver/sim_device.cc |   0
 .../{ => android}/sim/hexagon_device_sim.cc        |   4 +-
 .../hexagon/{ => android}/sim/hexagon_sim_proto.h  |   6 +-
 .../{ => android}/target/fastrpc/CMakeLists.txt    |   0
 .../hexagon/{ => android}/target/fastrpc/README.md |   0
 .../target/fastrpc/include/tvm_remote.idl          |   0
 .../target/fastrpc/include/tvm_remote_nd.idl       |   0
 .../{ => android}/target/fastrpc/src/tvm_hvx.cc    |   0
 .../{ => android}/target/fastrpc/src/tvm_hvx.h     |   6 +-
 .../target/fastrpc/src/tvm_remote_imp.cc           |   0
 .../target/fastrpc/src/tvm_remote_nd_imp.cc        |   0
 .../target/fastrpc/src/tvm_wrap_pthread.cc         |   0
 .../{ => android}/target/hexagon_device_target.cc  |   2 +-
 .../{ => android}/target/hexagon_dsprpcapi.cc      |   0
 .../{ => android}/target/hexagon_dsprpcapi.h       |   6 +-
 .../{ => android}/target/hexagon_stubapi.cc        |   0
 .../hexagon/{ => android}/target/hexagon_stubapi.h |   6 +-
 .../{ => android}/target/hexagon_target_log.h      |   6 +-
 src/runtime/hexagon/hexagon_module.h               | 101 ---------------------
 29 files changed, 42 insertions(+), 161 deletions(-)
 copy src/runtime/hexagon/{hexagon_module.h => android/hexagon_device.h} (81%)
 rename src/runtime/hexagon/{ => android}/hexagon_device_api.cc (99%)
 rename src/runtime/hexagon/{ => android}/hexagon_module.cc (99%)
 rename src/runtime/hexagon/{ => android}/hexagon_posix.cc (100%)
 rename src/runtime/hexagon/{ => android}/sim/driver/CMakeLists.txt (95%)
 rename src/runtime/hexagon/{ => android}/sim/driver/README.md (100%)
 rename src/runtime/hexagon/{ => android}/sim/driver/fake_pthread.cc (100%)
 rename src/runtime/hexagon/{ => android}/sim/driver/pthread.h (94%)
 rename src/runtime/hexagon/{ => android}/sim/driver/sched.h (84%)
 rename src/runtime/hexagon/{ => android}/sim/driver/sim_device.cc (100%)
 rename src/runtime/hexagon/{ => android}/sim/hexagon_device_sim.cc (99%)
 rename src/runtime/hexagon/{ => android}/sim/hexagon_sim_proto.h (90%)
 rename src/runtime/hexagon/{ => android}/target/fastrpc/CMakeLists.txt (100%)
 rename src/runtime/hexagon/{ => android}/target/fastrpc/README.md (100%)
 rename src/runtime/hexagon/{ => android}/target/fastrpc/include/tvm_remote.idl (100%)
 rename src/runtime/hexagon/{ => android}/target/fastrpc/include/tvm_remote_nd.idl (100%)
 rename src/runtime/hexagon/{ => android}/target/fastrpc/src/tvm_hvx.cc (100%)
 rename src/runtime/hexagon/{ => android}/target/fastrpc/src/tvm_hvx.h (95%)
 rename src/runtime/hexagon/{ => android}/target/fastrpc/src/tvm_remote_imp.cc (100%)
 rename src/runtime/hexagon/{ => android}/target/fastrpc/src/tvm_remote_nd_imp.cc (100%)
 rename src/runtime/hexagon/{ => android}/target/fastrpc/src/tvm_wrap_pthread.cc (100%)
 rename src/runtime/hexagon/{ => android}/target/hexagon_device_target.cc (99%)
 rename src/runtime/hexagon/{ => android}/target/hexagon_dsprpcapi.cc (100%)
 rename src/runtime/hexagon/{ => android}/target/hexagon_dsprpcapi.h (96%)
 rename src/runtime/hexagon/{ => android}/target/hexagon_stubapi.cc (100%)
 rename src/runtime/hexagon/{ => android}/target/hexagon_stubapi.h (98%)
 rename src/runtime/hexagon/{ => android}/target/hexagon_target_log.h (87%)