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/05/17 05:02:51 UTC

[tvm] branch nightly updated (eb1ea972b3 -> b4796cc717)

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 eb1ea972b3 [QNN] Implement 'qnn.softmax' (#14536)
     add f6bbe946e1 [relay][simplify_expr]: Add pass to remove trivial transpose ops (#14858)
     add 2f863dda62 [TIR][Schedule] Improve blockize to support blockizing multiple blocks (#14766)
     add 0e24aa7c8b [FIX] fix typo in comment (#14787)
     add b4796cc717 [Frontend][Paddle] [PaddlePaddle Hackathon 4] add convert support for p_norm/roi_align/softmax_with_cross_entropy (#14826)

No new revisions were added by this update.

Summary of changes:
 include/tvm/tir/schedule/schedule.h                |   7 +
 python/tvm/ir/instrument.py                        |   2 +-
 python/tvm/relay/frontend/paddlepaddle.py          |  82 ++++++
 python/tvm/tir/schedule/schedule.py                |  12 +-
 src/relay/transforms/simplify_expr.cc              | 111 +++++---
 src/tir/schedule/concrete_schedule.cc              |   9 +
 src/tir/schedule/concrete_schedule.h               |   1 +
 src/tir/schedule/primitive.h                       |  10 +
 src/tir/schedule/primitive/blockize_tensorize.cc   | 287 +++++++++++++++++++--
 src/tir/schedule/schedule.cc                       |   9 +-
 src/tir/schedule/traced_schedule.cc                |  11 +
 src/tir/schedule/traced_schedule.h                 |   1 +
 src/tir/transforms/inject_rolling_buffer.cc        |   2 +-
 .../metaschedule_e2e/test_resnet50_int8.py         |   2 +-
 tests/python/driver/tvmc/test_parse_config_file.py |   2 +-
 tests/python/frontend/paddlepaddle/test_forward.py |  83 ++++++
 tests/python/relay/test_pass_simplify_expr.py      |  22 ++
 .../unittest/test_meta_schedule_trace_apply.py     |  18 +-
 .../python/unittest/test_tir_schedule_blockize.py  |  49 ++++
 19 files changed, 638 insertions(+), 82 deletions(-)