This is an automated email from the ASF dual-hosted git repository.
github-bot pushed a change to branch nightly
in repository https://gitbox.apache.org/repos/asf/tvm.git
from 0a79095b1d [S-TIR] Fix cache_read/cache_write region when inner block
has T.whe… (#19406)
add e0e93151f2 [Docs] Fix outdated source install and API reference docs
(#19409)
add 5c17111ed9 [Fix][Runtime][RPC] Fix remote tensor handle cleanup for
RPC return values (#19410)
add 75a6b308c6 [Relax][Frontend][TFLite] Fix and test `MATRIX_DIAG`,
`MATRIX_SET_DIAG`, `SPARSE_TO_DENSE` (#19408)
add 0fdb2cd84d fix: use `is None` instead of `== None` in test files (PEP
8 E711) (#19393)
add 379bd1fc1f [relax] fix 'occured' -> 'occurred' in transform.h doc
comment (#19411)
No new revisions were added by this update.
Summary of changes:
docs/README.md | 31 +++++-
docs/conf.py | 29 ++---
docs/contribute/document.rst | 3 +-
docs/install/from_source.rst | 19 ++--
docs/reference/api/python/contrib.rst | 60 +++++++++++
docs/reference/api/python/index.rst | 1 +
docs/reference/api/python/{rpc.rst => support.rst} | 6 +-
include/tvm/relax/transform.h | 2 +-
python/tvm/contrib/coreml_runtime.py | 1 +
python/tvm/contrib/cudnn.py | 52 ++-------
python/tvm/contrib/popen_pool.py | 2 +-
.../tvm/relax/frontend/tflite/tflite_frontend.py | 51 ++++++---
python/tvm/rpc/testing.py | 1 +
src/runtime/rpc/rpc_module.cc | 11 +-
src/runtime/rpc/rpc_session.h | 8 ++
tests/cpp/runtime/rpc_module_test.cc | 119 +++++++++++++++++++++
tests/python/ir/test_ir_type.py | 2 +-
tests/python/relax/test_frontend_tflite.py | 114 ++++++++++++++++++++
tests/python/runtime/test_runtime_rpc.py | 23 ++--
tests/python/tirx-base/test_tir_base.py | 4 +
tests/python/tirx-base/test_tir_constructor.py | 2 +-
21 files changed, 442 insertions(+), 99 deletions(-)
copy docs/reference/api/python/{rpc.rst => support.rst} (94%)
create mode 100644 tests/cpp/runtime/rpc_module_test.cc