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/08/13 10:37:05 UTC

[tvm] branch last-successful updated (478b672f2b -> 036aa722ae)

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 478b672f2b [skip ci] Revert "[ci] Default to n=2 for test parallelism (#12376)" (#12413)
     add 1737308397 [WIP][Pylint] Making frontend tests pylint compliant (#12028)
     add 96cac7501d [MetaSchedule] Filter vector_load_lens based on buffer dtype (#12408)
     add 036aa722ae [TIR] Add pass ManifestSharedMemoryLocalStage (#12355)

No new revisions were added by this update.

Summary of changes:
 include/tvm/tir/stmt.h                             |   3 +
 include/tvm/tir/transform.h                        |   6 +
 python/tvm/meta_schedule/default_config.py         |   4 +-
 python/tvm/meta_schedule/testing/schedule_rule.py  |   4 +-
 python/tvm/tir/transform/transform.py              |  11 +
 src/driver/driver_api.cc                           |   1 +
 .../schedule_rule/multi_level_tiling.cc            |  29 +-
 .../manifest_shared_memory_local_stage.cc          | 287 ++++++
 tests/lint/pylint.sh                               |  13 +
 tests/python/frontend/caffe/test_forward.py        |  79 +-
 tests/python/frontend/caffe2/model_zoo/__init__.py |   2 +-
 .../python/frontend/caffe2/model_zoo/squeezenet.py |  10 +-
 tests/python/frontend/caffe2/test_forward.py       |  26 +-
 tests/python/frontend/coreml/model_zoo/__init__.py |   8 +-
 tests/python/frontend/coreml/test_forward.py       | 194 ++--
 tests/python/frontend/darknet/test_forward.py      |  37 +-
 tests/python/frontend/keras/test_forward.py        | 743 ++++++++--------
 tests/python/frontend/oneflow/test_forward.py      |  67 +-
 .../python/frontend/oneflow/test_vision_models.py  |  10 +-
 tests/python/frontend/onnx/test_forward.py         | 985 ++++++++++++---------
 tests/python/frontend/pytorch/test_forward.py      | 467 +++++++---
 tests/python/frontend/tensorflow/test_forward.py   | 328 ++++---
 tests/python/frontend/tflite/test_forward.py       | 384 ++++----
 ...ta_schedule_schedule_rule_multi_level_tiling.py |  16 +-
 ...transform_manifest_shared_memory_local_stage.py | 134 +++
 25 files changed, 2449 insertions(+), 1399 deletions(-)
 create mode 100644 src/tir/transforms/manifest_shared_memory_local_stage.cc
 create mode 100644 tests/python/unittest/test_tir_transform_manifest_shared_memory_local_stage.py