This is an automated email from the ASF dual-hosted git repository.
github-bot pushed a change to branch last-successful
in repository https://gitbox.apache.org/repos/asf/tvm.git
from 3131cdc56a [Target] Replace utility functions with target.features
(#12455)
add 7827fffe5c [Relay][Frontend][ONNX] Add GridSample operator (#13163)
add 5400b942d2 [ONNX] Add converter for FastGelu from Microsoft
onnxruntime contrib opset (#13119)
add 3e02ac5d2e [Adreno] Fix mem_scope annotations for prim funcs having
several heads (#13153)
add 03d989f441 [Adreno] Adapt reduction schedule for adreno (#13100)
add c302b3dce3 [AOT] Add CreateFunctionMetadata analysis pass (#13095)
add bb8aad160d [ci] Temporarily disable MacOS RPC tests (#13186)
No new revisions were added by this update.
Summary of changes:
.github/workflows/main.yml | 17 +-
include/tvm/tir/analysis.h | 7 +
python/tvm/ir/memory_pools.py | 52 ++++
python/tvm/relay/backend/aot.py | 26 ++
python/tvm/relay/frontend/onnx.py | 56 +++-
python/tvm/relay/op/image/image.py | 2 +-
python/tvm/relay/op/strategy/adreno.py | 7 +
python/tvm/topi/adreno/__init__.py | 1 +
python/tvm/topi/adreno/reduction.py | 69 +++++
python/tvm/topi/adreno/utils.py | 31 +--
python/tvm/topi/cuda/reduction.py | 20 +-
python/tvm/topi/image/grid_sample.py | 18 +-
src/relay/backend/aot/create_function_metadata.cc | 125 +++++++++
src/relay/backend/aot/create_function_metadata.h | 49 ++++
src/relay/op/image/grid_sample.cc | 2 +-
src/relay/transforms/annotate_texture_storage.cc | 10 +-
src/tir/usmp/utils.cc | 6 +-
tests/python/frontend/onnx/test_forward.py | 74 +++--
.../relay/aot/test_aot_create_function_metadata.py | 302 +++++++++++++++++++++
.../opencl_texture/test_conv2d_nchw_texture.py | 193 +++++++++++++
.../relay/opencl_texture/test_reduction_texture.py | 51 ++++
21 files changed, 1045 insertions(+), 73 deletions(-)
create mode 100644 python/tvm/topi/adreno/reduction.py
create mode 100644 src/relay/backend/aot/create_function_metadata.cc
create mode 100644 src/relay/backend/aot/create_function_metadata.h
create mode 100644 tests/python/relay/aot/test_aot_create_function_metadata.py
create mode 100644 tests/python/relay/opencl_texture/test_reduction_texture.py