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

[tvm] branch nightly updated (0af9ff90e0 -> 80079b6493)

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 0af9ff90e0 [TIR] Restrict tir.transform.LowerTVMBuiltin to host functions (#14944)
     add 5b9e9bd675 [TIR] Keep trivial LetStmt in tir.Simplify when used in buffer decl (#14951)
     add 9877db5ff3 [TIR] Handle callees on same target, different codegen (#14988)
     add 429f601284 [TIR] Enhance TVMScript Buffer Slice Access (#14693)
     add 6bcc1b44f5 [TOPI] Fix dynamic dimensions support for Dense on TOPI side (#15018)
     add efb09a5953 [ONNX] Fix bug in scatter_elements (#15017)
     add 80079b6493 Fix type parse error about AdaptiveMaxPool (#15016)

No new revisions were added by this update.

Summary of changes:
 python/tvm/relay/frontend/onnx.py                  |  2 +-
 python/tvm/relay/frontend/pytorch.py               |  4 +
 python/tvm/script/parser/core/evaluator.py         | 38 +++++++++
 python/tvm/script/parser/tir/operation.py          | 92 ++++++++++++++++++++--
 python/tvm/script/parser/tir/parser.py             | 22 ++++++
 python/tvm/tir/buffer.py                           |  5 +-
 python/tvm/topi/nn/dense.py                        | 12 ++-
 src/tir/transforms/lower_device_kernel_launch.cc   | 45 +++++++++--
 src/tir/transforms/simplify.cc                     | 88 ++++++++++++++++++---
 tests/python/frontend/pytorch/test_forward.py      |  7 ++
 .../test_tir_transform_device_kernel_launch.py     | 49 ++++++++++++
 .../python/unittest/test_tir_transform_simplify.py | 44 +++++++++++
 tests/python/unittest/test_tvmscript_ops.py        | 69 ++++++++++++++++
 13 files changed, 449 insertions(+), 28 deletions(-)