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 c41a4eb  next try at docker images
 discard 4564df5  skip a test until update complete
 discard 2cbe52d  try updating docker images again
 discard dcdfe62  disable test until CI update complete
 discard 1e4b630  Don't force output shape for conv transpose tests, add 1D and 
3D cases
 discard c92cec0  support convtranspose opset 11 autopadding
 discard 8d20c3e  point jenkins at new docker
 discard bf1b4be  add failing onnx tets
     add d17f753  Support aten::flip (#8398)
     add d3fc562  [Relay][TOPI] Resize 1D (#8346)
     add 6a3d950  [Docs] Fix for broken link in apps for wasm-standalone dir 
(#8045)
     add ec47129  add aten::masked_fill_ in pytorch frontend (#8403)
     add 6bcad2e  fix storage rewrite index remap (#8338)
     add bbfc52c  Cleanup more uses of np.bool and np.int. (#8399)
     add 0a2a02c  add failing onnx tets
     add 104b990  point jenkins at new docker
     add 8af68d3  support convtranspose opset 11 autopadding
     add 084f168  Don't force output shape for conv transpose tests, add 1D and 
3D cases
     add ba27885  disable test until CI update complete
     add 6511883  try updating docker images again
     add d3f595a  skip a test until update complete
     add 702877c  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   (c41a4eb)
            \
             N -- N -- N   refs/heads/ci-docker-staging (702877c)

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/README.md                                     |    2 +-
 docs/langref/relay_op.rst                          |    4 +-
 include/tvm/relay/attrs/image.h                    |  107 +-
 python/tvm/relay/frontend/keras.py                 |    1 +
 python/tvm/relay/frontend/mxnet.py                 |    2 +-
 python/tvm/relay/frontend/onnx.py                  |   59 +-
 python/tvm/relay/frontend/pytorch.py               |   23 +-
 python/tvm/relay/frontend/tensorflow_ops.py        |    6 +-
 python/tvm/relay/frontend/tflite.py                |    6 +-
 python/tvm/relay/op/dyn/image/_image.py            |   26 +-
 python/tvm/relay/op/image/_image.py                |  149 ++-
 python/tvm/relay/op/image/image.py                 |  148 ++-
 python/tvm/relay/op/op_attrs.py                    |   21 +-
 python/tvm/topi/image/resize.py                    | 1191 +++++++++++---------
 python/tvm/topi/nn/upsampling.py                   |    6 +-
 python/tvm/topi/testing/__init__.py                |    4 +-
 python/tvm/topi/testing/bilinear_resize_python.py  |  105 --
 python/tvm/topi/testing/resize_python.py           |  294 +++++
 .../tvm/topi/testing/trilinear_resize3d_python.py  |  111 --
 python/tvm/topi/testing/upsampling_python.py       |  136 ---
 python/tvm/topi/utils.py                           |   10 +
 src/relay/op/dyn/image/resize.cc                   |   30 +-
 src/relay/op/image/resize.cc                       |  129 ++-
 src/relay/op/make_op.h                             |    6 +-
 src/relay/transforms/dynamic_to_static.cc          |   10 +-
 src/tir/transforms/storage_rewrite.cc              |    2 +-
 tests/python/frontend/coreml/test_forward.py       |   11 +-
 tests/python/frontend/onnx/test_forward.py         |  113 +-
 tests/python/frontend/pytorch/test_forward.py      |   20 +
 tests/python/relay/dyn/test_dynamic_op_level2.py   |   33 +-
 tests/python/relay/dyn/test_dynamic_op_level5.py   |   25 +-
 tests/python/relay/test_any.py                     |    8 +-
 tests/python/relay/test_op_level2.py               |   34 +-
 tests/python/relay/test_op_level4.py               |    6 +-
 tests/python/relay/test_op_level5.py               |   89 +-
 tests/python/relay/test_pass_convert_op_layout.py  |   20 +-
 tests/python/relay/test_pass_dynamic_to_static.py  |   29 +-
 .../test_topi_depthwise_conv2d_back_weight.py      |    4 +-
 tests/python/topi/python/test_topi_image.py        |   74 +-
 tests/python/topi/python/test_topi_upsampling.py   |   32 +-
 tests/python/unittest/test_tir_nodes.py            |    4 +-
 .../unittest/test_tir_transform_storage_rewrite.py |   42 +
 42 files changed, 1899 insertions(+), 1233 deletions(-)
 delete mode 100644 python/tvm/topi/testing/bilinear_resize_python.py
 create mode 100644 python/tvm/topi/testing/resize_python.py
 delete mode 100644 python/tvm/topi/testing/trilinear_resize3d_python.py
 delete mode 100644 python/tvm/topi/testing/upsampling_python.py

Reply via email to