You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tvm.apache.org by gi...@apache.org on 2023/03/15 05:02:48 UTC

[tvm] branch nightly updated (ccc0b9162f -> 970cd1def8)

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 ccc0b9162f [fix][relay][qnn] Bug fix for 8-bit quantized mul (#14286)
     add c9ab1979f1 [CI][ETHOSN] Add ssh to the driver stack installation (#14246)
     add d22bdce2bf [Relay][Op] Connect existing arm_cpu schedule to relay strategy for concat (#14270)
     add ce1fa8908f [TE] Record primitives of Schedule for visualization (#14168)
     add e22a2d5b9f [IR] Enhance IRModule SEqual/SHash to support cross function calls (#14289)
     add 075e2ec7bb [Frontend][Paddle]fix eye and dist (#14292)
     add 970cd1def8 [TIR][Hexagon] Enhancement of NarrowDataType pass for binary ops (#14298)

No new revisions were added by this update.

Summary of changes:
 .../install/ubuntu_install_ethosn_driver_stack.sh  |  3 +-
 include/tvm/te/schedule.h                          | 43 +++++++++++++-
 python/tvm/contrib/tedd.py                         | 27 ++++++++-
 python/tvm/relay/frontend/paddlepaddle.py          |  8 ++-
 python/tvm/relay/op/strategy/arm_cpu.py            | 16 +++--
 src/ir/module.cc                                   | 68 +++++++++++++---------
 src/relay/backend/te_compiler.cc                   | 13 ++++-
 src/te/schedule/schedule_dataflow_rewrite.cc       | 14 +++--
 src/te/schedule/schedule_lang.cc                   | 51 +++++++++++++++-
 src/tir/transforms/narrow_datatype.cc              | 38 ++++++++++++
 tests/python/contrib/test_tedd.py                  | 58 +++++++++++++++++-
 .../relay/strategy/test_select_implementation.py   | 56 ++++++++++++++++++
 tests/python/relay/test_build_module.py            | 37 ++++++++++++
 tests/python/unittest/test_te_schedule_ops.py      | 53 +++++++++++++++++
 .../unittest/test_tir_transform_narrow_datatype.py | 61 +++++++++++++++++++
 15 files changed, 496 insertions(+), 50 deletions(-)
 create mode 100644 tests/python/relay/strategy/test_select_implementation.py