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 34c95a8 [Frontend][TFLite] Add parser support for shape and range
(#5329)
add 8a98782 [REFACTOR] Separate ArgTypeCode from DLDataTypeCode (#5730)
No new revisions were added by this update.
Summary of changes:
3rdparty/dlpack | 2 +-
include/tvm/runtime/c_runtime_api.h | 8 +--
include/tvm/runtime/data_type.h | 37 +++--------
include/tvm/runtime/packed_func.h | 49 +++++++++++++-
include/tvm/tir/op.h | 2 +-
.../apache/tvm/{TypeCode.java => ArgTypeCode.java} | 4 +-
.../src/main/java/org/apache/tvm/Function.java | 14 ++--
jvm/core/src/main/java/org/apache/tvm/Module.java | 4 +-
.../src/main/java/org/apache/tvm/NDArrayBase.java | 2 +-
.../src/main/java/org/apache/tvm/TVMValue.java | 4 +-
.../main/java/org/apache/tvm/TVMValueBytes.java | 2 +-
.../main/java/org/apache/tvm/TVMValueDouble.java | 2 +-
.../main/java/org/apache/tvm/TVMValueHandle.java | 4 +-
.../src/main/java/org/apache/tvm/TVMValueLong.java | 2 +-
.../src/main/java/org/apache/tvm/TVMValueNull.java | 2 +-
.../main/java/org/apache/tvm/TVMValueString.java | 2 +-
python/tvm/__init__.py | 2 +-
python/tvm/_ffi/_ctypes/object.py | 12 ++--
python/tvm/_ffi/_ctypes/packed_func.py | 56 ++++++++--------
python/tvm/_ffi/_ctypes/types.py | 30 ++++-----
python/tvm/_ffi/_cython/base.pxi | 2 +-
python/tvm/_ffi/registry.py | 6 +-
python/tvm/_ffi/runtime_ctypes.py | 29 ++++----
python/tvm/runtime/__init__.py | 2 +-
python/tvm/runtime/ndarray.py | 2 +-
python/tvm/tir/expr.py | 6 +-
rust/common/src/packed_func.rs | 56 ++++++++--------
rust/frontend/src/function.rs | 8 +--
rust/tvm-sys/src/packed_func.rs | 56 ++++++++--------
src/runtime/micro/standalone/utvm_graph_runtime.cc | 2 +-
src/runtime/rpc/rpc_module.cc | 2 +-
src/target/datatype/registry.cc | 8 +--
src/target/datatype/registry.h | 2 +-
tests/python/unittest/test_runtime_extension.py | 3 +-
tests/python/unittest/test_runtime_ndarray.py | 7 ++
web/src/ctypes.ts | 6 +-
web/src/rpc_server.ts | 6 +-
web/src/runtime.ts | 77 ++++++++++++----------
38 files changed, 284 insertions(+), 236 deletions(-)
rename jvm/core/src/main/java/org/apache/tvm/{TypeCode.java =>
ArgTypeCode.java} (95%)