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

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


 discard 59f413b  remove test_reshape_allowzero_reordered from onnx node tests
 discard c43a11e  Validating ci_gpu:20220112-000102-d1ee20191
     add 586944e  Implement [skip ci] for Jenkins (#9554)
     add 80f9b9f  [TE] Support negative indices  (#9023)
     add 9d867c2  [community] @AndrewZhaoLuo -> Committer (#9896)
     add 11edc7b  [FoldScaleAxis] Support dense and bias_add op in fold scale 
axis (#9838)
     add 39758e7  [Caffe Frontend] Add support for Permute layer (#9157)
     add 920c380  [Caffe Frontend] adding Reduction op (#8015)
     add ff2c434  [CUTLASS] Support more kernels: int8, tf32, and 3xtf32 (#9899)
     add 2ef2721  Improve the frontend tflite _test_rsqrt test to support 
tflite 2.6 (#9888)
     add 9f168f2  [Object] Throw AttributeError if the object doesn't have a 
reflection table (#9919)
     add c4eaeb8  min/max support (#9918)
     add 48006f2  [Hexagon] Include Utils.cmake for tvm_file_glob used in 
HexagonSDK.cmake (#9903)
     add de6a022  fix pytorch frontend bug (#9884)
     add bcda972  change install version of gpu to cpu (#9922)
     add 993009e  Run extract constants pass only for CMSIS-NN target (#9913)
     add 8959d68  [Relay] Add printer for op strategy objects (#9923)
     add f9d8c2b  Add API `get_input_info` to graph_executor (#9889)
     new 8f54df4  Update ci-arm and ci-qemu with tag 20220112-225944-11edc7b64

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   (59f413b)
            \
             N -- N -- N   refs/heads/ci-docker-staging (8f54df4)

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.

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 CONTRIBUTORS.md                                    |   4 +-
 Jenkinsfile                                        | 198 ++++++++++---------
 apps/hexagon_launcher/cmake/HexagonLauncher.cmake  |   1 +
 apps/hexagon_proxy_rpc/cmake/HexagonRPC.cmake      |   1 +
 cmake/libs/hexagon_rpc_skel/CMakeLists.txt         |   1 +
 docker/install/ubuntu_install_oneflow.sh           |   2 +-
 docs/contribute/committer_guide.rst                |  34 ++++
 include/tvm/node/reflection.h                      |   3 +-
 include/tvm/te/tensor.h                            |  32 ++++
 python/tvm/contrib/cutlass/build.py                |  91 ++++++++-
 python/tvm/contrib/cutlass/gen_conv2d.py           |  29 ++-
 python/tvm/contrib/cutlass/gen_gemm.py             |  66 +++++--
 python/tvm/contrib/cutlass/gen_tensor_op.py        | 210 ++++++++++++++-------
 python/tvm/contrib/cutlass/library.py              |  17 ++
 python/tvm/contrib/graph_executor.py               |  27 +++
 python/tvm/driver/tvmc/runner.py                   |  71 ++-----
 python/tvm/relay/frontend/caffe.py                 |  51 +++++
 python/tvm/relay/frontend/pytorch.py               |  13 +-
 python/tvm/relay/op/contrib/cutlass.py             |   7 +-
 .../transform/fake_quantization_to_integer.py      |   4 +-
 python/tvm/runtime/container.py                    |  11 ++
 .../backend/contrib/cmsisnn/extract_constants.cc   |  12 ++
 src/relay/backend/contrib/cutlass/codegen.cc       |   6 +-
 src/relay/ir/op_strategy.cc                        |  14 ++
 src/relay/transforms/fold_scale_axis.cc            |  83 ++++++++
 src/runtime/graph_executor/graph_executor.cc       |  36 ++++
 src/runtime/graph_executor/graph_executor.h        |  12 ++
 .../hexagon/android/sim/driver/CMakeLists.txt      |   2 +
 .../hexagon/android/target/fastrpc/CMakeLists.txt  |   3 +-
 src/te/tensor.cc                                   |  33 +++-
 tests/cpp/tensor_test.cc                           |  11 ++
 .../contrib/test_cmsisnn/test_extract_constants.py |  95 +++++++++-
 tests/python/contrib/test_cutlass.py               | 135 ++++++++++---
 tests/python/frontend/caffe/test_forward.py        | 101 ++++++++++
 tests/python/frontend/onnx/test_forward.py         |   1 -
 tests/python/frontend/tflite/test_forward.py       |  75 +++++++-
 tests/python/relay/test_backend_graph_executor.py  |  15 ++
 .../test_pass_fake_quantization_to_integer.py      |  23 ++-
 tests/python/relay/test_pass_fold_scale_axis.py    | 143 ++++++++++++++
 tests/python/unittest/test_ci.py                   | 132 +++++++++++++
 tests/python/unittest/test_runtime_container.py    |   6 +
 tests/python/unittest/test_tir_schedule_error.py   |   6 +
 tests/scripts/git_skip_ci.py                       | 110 +++++++++++
 43 files changed, 1631 insertions(+), 296 deletions(-)
 create mode 100644 tests/python/unittest/test_ci.py
 create mode 100755 tests/scripts/git_skip_ci.py

Reply via email to