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 2022/09/20 22:25:40 UTC

[tvm] branch last-successful updated (ecd003c742 -> 5dfa8da00e)

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 ecd003c742 [ci] Lint PR title/body for @ tags (#12840)
     add d9f7cf3539 Revert "[ci] Lint PR title/body for @ tags (#12840)" (#12848)
     add 5dfa8da00e [Hexagon] 2-Stage Pipeline; Lower Async TIR primitives to Hexagon User DMA (#12785)

No new revisions were added by this update.

Summary of changes:
 ci/scripts/check_pr.py                             |  18 +-
 include/tvm/tir/builtin.h                          |  10 ++
 include/tvm/tir/transform.h                        |   5 +
 src/driver/driver_api.cc                           |  12 +-
 src/runtime/hexagon/hexagon_device_api.cc          |  25 +++
 src/tir/op/builtin.cc                              |   6 +
 src/tir/transforms/lower_async_dma.cc              | 194 +++++++++++++++++++++
 src/tir/transforms/lower_tvm_builtin.cc            |  30 ++++
 tests/python/ci/test_ci.py                         |  12 --
 .../test_hexagon/test_software_pipeline_async.py   |  86 +++++++++
 .../test_tir_transform_inject_ptx_async_copy.py    |   4 +-
 .../test_tir_transform_inject_software_pipeline.py |   2 +-
 12 files changed, 377 insertions(+), 27 deletions(-)
 create mode 100644 src/tir/transforms/lower_async_dma.cc
 create mode 100644 tests/python/contrib/test_hexagon/test_software_pipeline_async.py