You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tvm.apache.org by an...@apache.org on 2022/01/13 23:37:34 UTC

[tvm] branch ci-docker-staging updated (8f54df4 -> 51369c5)

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

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


 discard 8f54df4  Update ci-arm and ci-qemu with tag 20220112-225944-11edc7b64
     add cc9d2f4  [Fix Bug] fix the bug of pool_impl_nd when computing avgpool_nd whith ceil_mode and count_include_pad are True. (#9835)
     add 2c1ed59  [skip ci] Fix missing pack_lib in Jenkinsfile (#9924)
     add 5f828a6  [Hexagon] Pass SDK information to launcher build for Android (#9902)
     add 424821a  std::string -> tvm::String for Conv1DAttrs (#9921)
     add 7485413  [TIR][Schedule] Annotate allows array as annotaton value (#9920)
     new 51369c5  jenkinsfile and one test

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

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:
 Jenkinsfile                                         |  9 +++++----
 apps/hexagon_launcher/cmake/android/CMakeLists.txt  |  2 ++
 include/tvm/relay/attrs/nn.h                        |  6 +++---
 include/tvm/topi/nn/pooling.h                       | 21 ++++++++++++++++++---
 python/tvm/tir/schedule/schedule.py                 |  4 ++--
 src/tir/schedule/concrete_schedule.cc               |  8 ++++++++
 src/tir/schedule/primitive/annotate.cc              | 13 +------------
 src/tir/schedule/trace.cc                           |  8 ++++++++
 tests/python/frontend/onnx/test_forward.py          |  4 +++-
 tests/python/frontend/pytorch/test_forward.py       |  9 +++++++++
 .../python/unittest/test_tir_schedule_utilities.py  |  8 ++++++--
 11 files changed, 65 insertions(+), 27 deletions(-)

[tvm] 01/01: jenkinsfile and one test

Posted by an...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit 51369c555756ffc98c29119f6df760d377f90a10
Author: Andrew Luo <an...@gmail.com>
AuthorDate: Thu Jan 13 15:13:26 2022 -0800

    jenkinsfile and one test
---
 Jenkinsfile                                | 4 ++--
 tests/python/frontend/onnx/test_forward.py | 4 +++-
 2 files changed, 5 insertions(+), 3 deletions(-)

diff --git a/Jenkinsfile b/Jenkinsfile
index 64b8465..e788951 100755
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -46,11 +46,11 @@ import org.jenkinsci.plugins.pipeline.modeldefinition.Utils
 
 // NOTE: these lines are scanned by docker/dev_common.sh. Please update the regex as needed. -->
 ci_lint = "tlcpack/ci-lint:v0.67"
-ci_gpu = "tlcpack/ci-gpu:v0.79"
+ci_gpu = "tlcpack/ci-gpu:20220112-000102-d1ee20191"
 ci_cpu = "tlcpack/ci-cpu:v0.80"
 ci_wasm = "tlcpack/ci-wasm:v0.71"
 ci_i386 = "tlcpack/ci-i386:v0.74"
-ci_qemu = "tlcpack/ci-qemu:v0.08"
+ci_qemu = "tlcpack/ci-qemu:20220112-000102-d1ee20191"
 ci_arm = "tlcpack/ci-arm:v0.06"
 // <--- End of regex-scanned config.
 
diff --git a/tests/python/frontend/onnx/test_forward.py b/tests/python/frontend/onnx/test_forward.py
index 701906e..d3d868f 100644
--- a/tests/python/frontend/onnx/test_forward.py
+++ b/tests/python/frontend/onnx/test_forward.py
@@ -233,7 +233,8 @@ def verify_with_ort(
 
 
 def quantize_and_verify_with_ort(onnx_model, input_names, input_shapes, target, dev):
-    from onnxruntime.quantization import CalibrationDataReader, QuantType, quantize_static
+    from onnxruntime.quantization import (CalibrationDataReader, QuantType,
+                                          quantize_static)
 
     input_arrays = [np.random.random(shape).astype("float32") for shape in input_shapes]
 
@@ -5047,6 +5048,7 @@ unsupported_onnx_tests = [
     "test_reduce_sum_keepdims_random",
     "test_reduce_sum_negative_axes_keepdims_example",
     "test_reduce_sum_negative_axes_keepdims_random",
+    "test_reshape_allowzero_reordered",
     "test_rnn_seq_length",
     "test_round",
     "test_sequence_insert_at_back",