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/22 13:20:16 UTC

[tvm] branch last-successful updated (39f71ae288 -> fe75f00991)

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 39f71ae288 [frontend][pytorch] Add a new test case for torch aten::fill_ operator implementation (#12857)
     add fe75f00991 [AutoTVM] Introducing multi_filter into ConfigSpace autotvm (#12545)

No new revisions were added by this update.

Summary of changes:
 python/tvm/autotvm/task/space.py                   | 330 ++++++++++++++++++++-
 python/tvm/autotvm/tuner/ga_tuner.py               | 108 +++----
 python/tvm/autotvm/tuner/index_based_tuner.py      |  73 ++---
 python/tvm/autotvm/tuner/model_based_tuner.py      |  40 +--
 python/tvm/autotvm/tuner/sa_model_optimizer.py     |  39 +--
 python/tvm/autotvm/tuner/tuner.py                  |   1 +
 python/tvm/autotvm/utils.py                        |  32 --
 python/tvm/topi/adreno/conv2d_nchw.py              |  10 +-
 python/tvm/topi/adreno/conv2d_nhwc.py              |  10 +-
 python/tvm/topi/adreno/conv2d_winograd_common.py   |   7 +-
 python/tvm/topi/adreno/depthwise_conv2d_nchw.py    |   9 +
 python/tvm/topi/adreno/depthwise_conv2d_nhwc.py    |   9 +
 .../python/test_topi_conv2d_hwnc_tensorcore.py     |   4 +-
 tests/python/unittest/test_autotvm_ga_tuner.py     |  89 ++++++
 tests/python/unittest/test_autotvm_index_tuner.py  |  77 ++++-
 tests/python/unittest/test_autotvm_space.py        | 167 ++++++++++-
 16 files changed, 758 insertions(+), 247 deletions(-)
 create mode 100644 tests/python/unittest/test_autotvm_ga_tuner.py