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/23 00:00:49 UTC

[tvm] branch nightly-docker-update updated (4671a5743b -> b38711e227)

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

github-bot pushed a change to branch nightly-docker-update
in repository https://gitbox.apache.org/repos/asf/tvm.git


    omit 4671a5743b [ci][docker] Nightly Docker image update
     add 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)
     add 195ae72b5c [TOPI] Fix dtype legalize logic for CPU dot product instruction (#12865)
     add 86f9580498 [Relay] Fix handling of TransfromLayout in TE compiler cache (#12874)
     add 4e783a6087 [TOPI] Add layer norm operator (#12864)
     add 0b074d8f06 Fix clang warnings (#12876)
     add b38711e227 [ci][docker] Nightly Docker image update

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (4671a5743b)
            \
             N -- N -- N   refs/heads/nightly-docker-update (b38711e227)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

No new revisions were added by this update.

Summary of changes:
 Jenkinsfile                                        |  20 +-
 ci/jenkins/Jenkinsfile.j2                          |  20 +-
 include/tvm/tir/stmt_functor.h                     |   2 +-
 include/tvm/topi/nn/layer_norm.h                   | 117 ++++++++
 include/tvm/topi/reduction.h                       |  23 ++
 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/relay/frontend/pytorch.py               |   8 +-
 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/tvm/topi/generic/conv2d.py                  |  15 +-
 python/tvm/topi/nn/__init__.py                     |   1 +
 .../tvm/topi/{vision/reorg.py => nn/layer_norm.py} |  34 ++-
 python/tvm/topi/testing/__init__.py                |   1 +
 .../{gather_python.py => layer_norm_python.py}     |  40 +--
 src/relay/backend/te_compiler_cache.cc             |   2 +-
 src/relay/transforms/annotate_texture_storage.cc   |   4 +-
 src/script/printer/doc.cc                          |   2 +-
 src/tir/schedule/primitive/pad_einsum.cc           |   5 +-
 src/tir/schedule/primitive/reduction.cc            |   9 +
 src/topi/nn.cc                                     |   6 +
 tests/python/frontend/pytorch/test_forward.py      |  10 +
 tests/python/relay/test_op_level2.py               |  75 +++++
 .../python/test_topi_conv2d_hwnc_tensorcore.py     |   4 +-
 tests/python/topi/python/test_topi_layer_norm.py   |  62 ++++
 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 ++++++++++-
 ...t_tir_transform_lower_cross_thread_reduction.py | 149 ++++++++++
 37 files changed, 1296 insertions(+), 314 deletions(-)
 create mode 100644 include/tvm/topi/nn/layer_norm.h
 copy python/tvm/topi/{vision/reorg.py => nn/layer_norm.py} (54%)
 copy python/tvm/topi/testing/{gather_python.py => layer_norm_python.py} (52%)
 create mode 100644 tests/python/topi/python/test_topi_layer_norm.py
 create mode 100644 tests/python/unittest/test_autotvm_ga_tuner.py