You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tvm.apache.org by ju...@apache.org on 2022/02/18 06:17:04 UTC

[tvm] branch main updated (4b3cb49 -> 316c506)

This is an automated email from the ASF dual-hosted git repository.

junrushao pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/tvm.git.


    from 4b3cb49  [ci] Mark `test_autotune_conv2d` flaky (#10298)
     add 316c506  [TIR] Add software pipelining (#10066)

No new revisions were added by this update.

Summary of changes:
 include/tvm/tir/stmt.h                             |   6 +
 include/tvm/tir/transform.h                        | 101 +++
 python/tvm/tir/transform/transform.py              |  11 +
 src/driver/driver_api.cc                           |   1 +
 src/tir/transforms/inject_software_pipeline.cc     | 777 +++++++++++++++++++
 src/tir/transforms/ir_utils.h                      |  33 +
 src/tir/transforms/tensorcore_infer_fragment.cc    |  29 +-
 .../test_tir_transform_inject_software_pipeline.py | 824 +++++++++++++++++++++
 8 files changed, 1765 insertions(+), 17 deletions(-)
 create mode 100644 src/tir/transforms/inject_software_pipeline.cc
 create mode 100644 tests/python/unittest/test_tir_transform_inject_software_pipeline.py