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

mbrookhart pushed a change to branch ci-docker-staging
in repository https://gitbox.apache.org/repos/asf/tvm.git.


 discard 0d1693a  next try at docker images
 discard 90efe24  skip a test until update complete
 discard 8bce13c  try updating docker images again
 discard 7fc7f81  disable test until CI update complete
 discard ed3c7fe  Don't force output shape for conv transpose tests, add 1D and 
3D cases
 discard f4445df  support convtranspose opset 11 autopadding
 discard 015b2e5  point jenkins at new docker
 discard 2c3fc85  add failing onnx tets
     add e3e03df  [microTVM] Add fixture to zephyr test (#8393)
     add e7c5349  [Relay] Add support of conv2d with NHWC for Mali (#8422)
     add ee65ab7  [PyLint] Minor updates to pass pylint locally. (#8424)
     add 53cb8aa  [Frontend] Check LLVM enabled/installed (#8414)
     add 4b67e9d  [Bug] Fix x86 dense schedule extern ops (#8420)
     add e934b7e  [Doc] Fix Relay pattern rewrite (#8425)
     add 0fa4396  [CUDA] dense_tensorcore/batch_matmul_tensorcore support 
int8/int4 (#8402)
     add 683c5eb  [Arith] Simplify MatchFusePattern in InverseAffineMap (#8427)
     add e51f5bb  [TOPI] Bugfix for topi.prod (#8416)
     add f692fc7  Improve XGBTuner document (#8428)
     add 513fcf4  [TVMSCRIPT] TVMScript Parser support BufferSlice indices 
(#8408)
     add 6141cac  Replace RuntimeError in _lookup_task with deferred error. 
(#8421)
     add bdfbc86  fix flaky TF test (#8431)
     add 59b204d  [microTVM][RVM] Fix clock skew on virtualbox (#8395)
     add 972d7b5  [Relay] Add support of conv2d with NHWC for Bifrost (#8430)
     add 3a9a388  fix wrong log of tir pass VerifyMemory (#8445)
     add c3558a1  [Relay to onnx conversion fixes][Pool, Pad] (#8435)
     add 3424005  [Relay to onnx conversion][New ops] (#8436)
     add 1d7a9e9  [ROCM] Fix undefined symbols by adding library (#8446)
     add fa513d5  add failing onnx tets
     add b7a65f3  point jenkins at new docker
     add 77e6077  support convtranspose opset 11 autopadding
     add 1d06784  Don't force output shape for conv transpose tests, add 1D and 
3D cases
     add ca7497e  disable test until CI update complete
     add 01f058a  try updating docker images again
     add 275cc43  skip a test until update complete
     add 7f5a959  next try at docker images

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   (0d1693a)
            \
             N -- N -- N   refs/heads/ci-docker-staging (7f5a959)

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:
 apps/microtvm/reference-vm/zephyr/Vagrantfile      |   1 +
 cmake/modules/ROCM.cmake                           |   3 +
 cmake/utils/FindROCM.cmake                         |   1 +
 docs/langref/relay_pattern.rst                     |   6 +-
 python/tvm/autotvm/task/task.py                    |  29 ++++-
 python/tvm/autotvm/tuner/xgboost_tuner.py          |   4 +-
 python/tvm/contrib/target/onnx.py                  |  46 ++++++-
 python/tvm/relay/frontend/common.py                |   1 +
 python/tvm/relay/op/strategy/bifrost.py            |   8 ++
 python/tvm/relay/op/strategy/cuda.py               |  15 ++-
 python/tvm/relay/op/strategy/mali.py               |  57 ++++----
 python/tvm/script/diagnostics.py                   |   3 +-
 python/tvm/script/node.py                          |   6 +-
 python/tvm/topi/arm_cpu/conv2d_spatial_pack.py     |  15 ++-
 python/tvm/topi/cuda/batch_matmul_tensorcore.py    |  83 ++++++------
 python/tvm/topi/cuda/dense_tensorcore.py           |  81 ++++++------
 python/tvm/topi/cuda/tensorcore_alter_op.py        | 129 +++++++++---------
 python/tvm/topi/image/resize.py                    |  18 +--
 python/tvm/topi/mali/conv2d.py                     | 124 ++++++++++++------
 python/tvm/topi/random/kernel.py                   |   4 +-
 python/tvm/topi/scan.py                            |   6 +-
 python/tvm/topi/testing/__init__.py                |   1 +
 .../tvm/topi/testing/{batch_matmul.py => dense.py} |  31 +++--
 python/tvm/topi/x86/dense.py                       |  26 +---
 src/arith/iter_affine_map.cc                       |  45 ++-----
 src/tir/analysis/verify_memory.cc                  |   2 +-
 tests/micro/zephyr/test_zephyr.py                  |   7 +
 tests/micro/zephyr/test_zephyr_aot.py              |   6 +
 tests/python/contrib/test_onnx.py                  | 144 ++++++++++++++++++++-
 .../python/relay/test_pass_legalize_tensorcore.py  |  68 ++++++----
 .../python/test_topi_batch_matmul_tensorcore.py    |  67 ++++++++--
 tests/python/topi/python/test_topi_conv2d_nhwc.py  |   8 ++
 .../topi/python/test_topi_dense_tensorcore.py      |  96 +++++++++++---
 tests/python/unittest/test_tvmscript_complete.py   |  66 ++++++++++
 .../python/unittest/test_tvmscript_error_report.py |  29 +++++
 35 files changed, 860 insertions(+), 376 deletions(-)
 mode change 100644 => 100755 python/tvm/relay/frontend/common.py
 copy python/tvm/topi/testing/{batch_matmul.py => dense.py} (68%)

Reply via email to