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 e8de88e4f5 [BYOC] [DNNL] enable in-place post-op sum in dnnl json
runtime (#12371)
add 5deb95a947 [Adreno][OpenCL] Get rid of extra memory copy (#12286)
add 3cb57d20a0 [TVMScript] Printer Frame (#12366)
No new revisions were added by this update.
Summary of changes:
include/tvm/script/printer/frame.h | 140 +++++++++++++++++++
python/tvm/relay/op/strategy/adreno.py | 18 +++
python/tvm/script/printer/frame.py | 81 +++++++++++
python/tvm/topi/adreno/__init__.py | 1 +
python/tvm/topi/adreno/conv2d_nchw.py | 29 ++--
python/tvm/topi/adreno/conv2d_nhwc.py | 29 ++--
python/tvm/topi/adreno/depthwise_conv2d_nchw.py | 10 +-
python/tvm/topi/adreno/depthwise_conv2d_nhwc.py | 10 +-
python/tvm/topi/{hls => adreno}/injective.py | 15 +-
python/tvm/topi/adreno/utils.py | 23 +++-
src/relay/transforms/annotate_texture_storage.cc | 152 +++++++++++++++++----
src/runtime/opencl/opencl_device_api.cc | 29 +++-
src/script/printer/frame.cc | 50 +++++++
tests/python/relay/test_conv2d_nchw_texture.py | 8 +-
.../unittest/test_tvmscript_printer_frame.py | 67 ++++-----
15 files changed, 558 insertions(+), 104 deletions(-)
create mode 100644 include/tvm/script/printer/frame.h
create mode 100644 python/tvm/script/printer/frame.py
copy python/tvm/topi/{hls => adreno}/injective.py (87%)
create mode 100644 src/script/printer/frame.cc
copy docker/install/ubuntu_install_ethosn_driver_stack.sh =>
tests/python/unittest/test_tvmscript_printer_frame.py (53%)
mode change 100755 => 100644