You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tvm.apache.org by tq...@apache.org on 2019/11/10 22:56:51 UTC

[incubator-tvm] branch master updated (2f65a87 -> d2fc025)

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

tqchen pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-tvm.git.


    from 2f65a87  [TFLite] Support PRelu (#4298)
     add d2fc025  [RUTNIME] Support C++ RPC (#4281)

No new revisions were added by this update.

Summary of changes:
 apps/{rocm_rpc => cpp_rpc}/Makefile                |  35 +-
 apps/cpp_rpc/README.md                             |  56 ++++
 apps/cpp_rpc/main.cc                               | 265 +++++++++++++++
 apps/cpp_rpc/rpc_env.cc                            | 254 +++++++++++++++
 apps/cpp_rpc/rpc_env.h                             |  80 +++++
 apps/cpp_rpc/rpc_server.cc                         | 359 +++++++++++++++++++++
 apps/cpp_rpc/rpc_server.h                          |  52 +++
 apps/cpp_rpc/rpc_tracker_client.h                  | 246 ++++++++++++++
 src/common/socket.h                                | 187 ++++++++++-
 src/common/util.h                                  | 158 +++++++++
 src/runtime/rpc/rpc_session.h                      |  19 ++
 .../vulkan_module.h => rpc/rpc_socket_impl.h}      |  24 +-
 12 files changed, 1711 insertions(+), 24 deletions(-)
 copy apps/{rocm_rpc => cpp_rpc}/Makefile (63%)
 create mode 100644 apps/cpp_rpc/README.md
 create mode 100644 apps/cpp_rpc/main.cc
 create mode 100644 apps/cpp_rpc/rpc_env.cc
 create mode 100644 apps/cpp_rpc/rpc_env.h
 create mode 100644 apps/cpp_rpc/rpc_server.cc
 create mode 100644 apps/cpp_rpc/rpc_server.h
 create mode 100644 apps/cpp_rpc/rpc_tracker_client.h
 create mode 100644 src/common/util.h
 copy src/runtime/{vulkan/vulkan_module.h => rpc/rpc_socket_impl.h} (70%)