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/06/30 09:23:59 UTC

[tvm] branch last-successful updated (3bd83e0c9f -> 522c8cc955)

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 3bd83e0c9f [MetaSchedule] Handle 'warp_execution' implied extend of threadIdx.x in VerifyGpuCode (#11949)
     add 898946fec6 support any shape and axis for log softmax (#11951)
     add 558ba99c7c [MetaSchedule] Tuning Script Upgrade (#11797)
     add 522c8cc955 typo fix (#11958)

No new revisions were added by this update.

Summary of changes:
 python/tvm/auto_scheduler/testing/tune_onnx.py     | 150 +++++++---------
 python/tvm/auto_scheduler/testing/tune_relay.py    | 145 ++++++---------
 python/tvm/auto_scheduler/testing/tune_te.py       |  97 ++++++-----
 python/tvm/meta_schedule/cost_model/cost_model.py  |   2 +-
 .../meta_schedule/testing/custom_builder_runner.py |  14 +-
 python/tvm/meta_schedule/testing/tune_onnx.py      |  86 +++------
 python/tvm/meta_schedule/testing/tune_relay.py     |  84 +++------
 python/tvm/meta_schedule/testing/tune_te.py        |  16 +-
 python/tvm/meta_schedule/testing/tune_utils.py     | 194 +++++++++++++++++++++
 python/tvm/meta_schedule/testing/utils.py          |   3 +-
 python/tvm/meta_schedule/tune.py                   |  20 ++-
 python/tvm/relay/testing/yolo_detection.py         |   2 +-
 python/tvm/topi/nn/softmax.py                      |  42 +++--
 python/tvm/topi/testing/softmax_python.py          |  28 ++-
 python/tvm/topi/x86/nn.py                          |   2 +-
 src/relay/op/tensor/transform.cc                   |   4 +-
 tests/python/relay/test_op_level1.py               |  74 ++++----
 tests/python/topi/python/test_topi_softmax.py      |   2 +-
 18 files changed, 535 insertions(+), 430 deletions(-)
 create mode 100644 python/tvm/meta_schedule/testing/tune_utils.py