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 f1ff61a [microNPU][4] Add the cascader Proposal generator (#9959)
add 4102ebf [Runtime][Pipeline Executor] multiple threads management and
the data forwarding notification mechanism. (#10234)
add cb7f773 [Hexagon] RPC server/client for simulator (#10361)
No new revisions were added by this update.
Summary of changes:
apps/hexagon_api/CMakeLists.txt | 29 +-
cmake/modules/Hexagon.cmake | 34 +-
python/tvm/contrib/hexagon/session.py | 2 +
python/tvm/contrib/pipeline_executor.py | 16 +-
.../hexagon/rpc/simulator/hexagon_sim_proto.h | 75 ++
src/runtime/hexagon/rpc/simulator/rpc_server.cc | 319 +++++
src/runtime/hexagon/rpc/simulator/session.cc | 1322 ++++++++++++++++++++
src/runtime/pipeline/pipeline_executor.cc | 16 +-
src/runtime/pipeline/pipeline_executor.h | 8 +-
src/runtime/pipeline/pipeline_scheduler.cc | 18 +-
src/runtime/pipeline/pipeline_scheduler.h | 4 -
src/runtime/pipeline/pipeline_struct.h | 299 ++++-
tests/python/relay/test_pipeline_executor.py | 15 +-
13 files changed, 2115 insertions(+), 42 deletions(-)
create mode 100644 src/runtime/hexagon/rpc/simulator/hexagon_sim_proto.h
create mode 100644 src/runtime/hexagon/rpc/simulator/rpc_server.cc
create mode 100644 src/runtime/hexagon/rpc/simulator/session.cc