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 666bd14d82 [Runtime] Make `CSourceModule` and `StaticLibraryModule`
Binary Serializable (#15693)
add d5a4f66fdc [FFI] Propagate Python errors across FFI boundaries (#15596)
add cd7d64e914 Fix a bug caused by PyTorch instance_norm when the input
shape is [1,1,1,2] (#15683)
add ff45cfbee8 [TVMScript][FIX] Disable `show_object_address` in printing
by default (#15705)
add 7322769474 [TVMScript] Disable `black_format` by default (#15706)
No new revisions were added by this update.
Summary of changes:
include/tvm/runtime/c_runtime_api.h | 7 +
include/tvm/runtime/registry.h | 45 +++++++
python/tvm/_ffi/_ctypes/packed_func.py | 26 ++--
python/tvm/_ffi/_cython/base.pxi | 5 +-
python/tvm/_ffi/_cython/packed_func.pxi | 19 ++-
python/tvm/_ffi/base.py | 149 ++++++++++++++++++++-
python/tvm/relay/frontend/pytorch.py | 2 +-
python/tvm/runtime/script_printer.py | 12 +-
python/tvm/script/highlight.py | 4 +-
python/tvm/tir/schedule/schedule.py | 4 +-
python/tvm/tir/schedule/trace.py | 4 +-
src/ir/transform.cc | 88 ++++++++----
src/relay/analysis/type_solver.cc | 2 -
src/runtime/c_runtime_api.cc | 94 ++++++++++++-
src/runtime/logging.cc | 137 +++++++++++++------
src/runtime/registry.cc | 62 ++++++++-
src/support/ffi_testing.cc | 12 ++
tests/python/frontend/pytorch/test_forward.py | 14 ++
tests/python/relay/test_pass_instrument.py | 16 +--
tests/python/relay/test_type_infer.py | 2 +-
...eta_schedule_schedule_rule_apply_custom_rule.py | 2 +-
tests/python/unittest/test_runtime_error.py | 102 ++++++++++++--
22 files changed, 680 insertions(+), 128 deletions(-)