This is an automated email from the ASF dual-hosted git repository.
zhic pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-tvm.git.
from 575d536 [RELAY][FRONTEND][CAFFE2] add Mul and ConvTranspose operator
(#5302)
add b72dd9d [RUNTIME] Introduce RValue reference(move) support to
TypedPackedFunc (#5271)
No new revisions were added by this update.
Summary of changes:
include/tvm/ir/expr.h | 34 ++--
include/tvm/node/container.h | 1 +
include/tvm/runtime/c_runtime_api.h | 3 +-
include/tvm/runtime/container.h | 20 +++
include/tvm/runtime/object.h | 16 ++
include/tvm/runtime/packed_func.h | 178 ++++++++++++++++-----
include/tvm/tir/expr.h | 26 +--
.../src/main/native/org_apache_tvm_native_c_api.cc | 3 +-
python/tvm/_ffi/_ctypes/object.py | 3 +
python/tvm/_ffi/_ctypes/packed_func.py | 5 +-
python/tvm/_ffi/_ctypes/types.py | 4 +-
python/tvm/_ffi/_cython/base.pxi | 3 +-
python/tvm/_ffi/_cython/object.pxi | 5 +-
python/tvm/_ffi/_cython/packed_func.pxi | 8 +-
python/tvm/_ffi/runtime_ctypes.py | 15 ++
python/tvm/runtime/object.py | 31 ++++
python/tvm/runtime/object_generic.py | 3 +-
rust/frontend/src/function.rs | 2 +-
src/ir/transform.cc | 2 +-
src/node/container.cc | 1 -
src/runtime/c_runtime_api.cc | 8 +-
src/support/ffi_testing.cc | 10 +-
tests/cpp/packed_func_test.cc | 47 +++++-
tests/python/unittest/test_runtime_packed_func.py | 31 ++++
tests/python/unittest/test_runtime_rpc.py | 2 +-
web/tvm_runtime.js | 10 +-
26 files changed, 375 insertions(+), 96 deletions(-)