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 dbcd198670 [BUILD] Enable log before throw message in windows (#14937)
add e11913be06 [Target] Add target to all TVM callbacks (#14939)
add 1c39613811 [LLVM] Expose Host CPU Feature Detection (#14946)
add bcf7abba29 Fix pytorch axis (#14930)
add 41a616ffba [TIR] Handle subroutine calls in MakePackedAPI (#14913)
add 94f4e25a40 [TIR] Handle subroutine calls in MakeUnpackedAPI (#14914)
add 5fd49f78ad [TIR] Restrict tir.transform.CombineContextCall to host
functions (#14945)
add 86ba26d854 [Bugfix][TIR] Avoid symbol conflicts in
MakePackedAPI/MakeUnpackedAPI (#14950)
add 81056cccd5 [TIR] Preserve existing kTarget function attribute in
BindTarget (#14942)
add 875217c79b [TIR] Restrict tir.transform.InstallDebugSpans to host
functions (#14943)
add 3a15eafd14 [TVMScript] Prevent bool to int conversion in T.Assert
condition (#14941)
No new revisions were added by this update.
Summary of changes:
apps/ios_rpc/tests/ios_rpc_mobilenet.py | 27 ++--
apps/ios_rpc/tests/ios_rpc_test.py | 13 +-
apps/topi_recipe/broadcast/test_broadcast_map.py | 12 +-
apps/topi_recipe/conv/depthwise_conv2d_test.py | 13 +-
apps/topi_recipe/conv/test_conv2d_hwcn_map.py | 9 +-
apps/topi_recipe/reduce/test_reduce_map.py | 10 +-
apps/topi_recipe/rnn/lstm.py | 9 +-
apps/topi_recipe/rnn/matexp.py | 13 +-
include/tvm/target/target.h | 13 ++
jvm/core/src/test/scripts/test_add_gpu.py | 4 +-
python/tvm/contrib/nvcc.py | 6 +-
python/tvm/contrib/sdaccel.py | 10 +-
python/tvm/relay/frontend/pytorch.py | 3 +-
python/tvm/script/ir_builder/tir/ir.py | 2 +
src/target/llvm/codegen_llvm.cc | 30 ++++
src/target/opt/build_cuda_on.cc | 4 +-
src/target/source/codegen_aocl.cc | 2 +-
src/target/source/codegen_metal.cc | 2 +-
src/target/source/codegen_opencl.cc | 2 +-
src/target/source/codegen_vhls.cc | 5 +-
src/target/spirv/spirv_utils.cc | 2 +-
src/target/target.cc | 15 ++
src/tir/ir/stmt.cc | 3 +
src/tir/transforms/combine_context_call.cc | 7 +-
src/tir/transforms/install_debug_spans.cc | 36 +++--
src/tir/transforms/ir_utils.cc | 10 ++
src/tir/transforms/ir_utils.h | 12 ++
src/tir/transforms/make_packed_api.cc | 128 ++++++++++++++---
src/tir/transforms/make_unpacked_api.cc | 113 ++++++++++++---
src/tir/transforms/primfunc_utils.cc | 30 +++-
tests/python/frontend/pytorch/test_forward.py | 6 +
tests/python/integration/test_ewise.py | 5 +-
tests/python/integration/test_ewise_fpga.py | 3 +-
tests/python/tir/test_debug_info.py | 50 ++++++-
.../test_tir_transform_combine_context_call.py | 102 ++++++++++---
.../python/unittest/test_tir_transform_helpers.py | 112 +++++++++++++++
.../test_tir_transform_inject_ptx_async_copy.py | 2 +-
.../unittest/test_tir_transform_make_packed_api.py | 111 ++++++++++++++-
.../test_tir_transform_make_unpacked_api.py | 158 ++++++++++++++++++++-
.../python/unittest/test_tvmscript_printer_tir.py | 4 +-
.../python/unittest/test_tvmscript_syntax_sugar.py | 35 +++++
41 files changed, 967 insertions(+), 166 deletions(-)