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/11/03 00:01:10 UTC

[tvm] branch nightly-docker-update updated (371f83f9eb -> e2b542dcb2)

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 371f83f9eb [ci][docker] Nightly Docker image update
     add 7536068e80 [MetaSchedule] Swap the order of RewriteTensorize and VerifyGPUCode to reduce tuning time (#13259)
     add 84fadc45d0 [CI] Skip failing Caffe tests due to broken URL (#13228)
     add 4ecf303695 [TVMC] Apply constant folding when converting layout (#13216)
     add c3c1454233 Apply group write permissions to Python virtual environment (#13252)
     add da4bb4a65b Fix a typo in rpc/client.py (#12842)
     add d261fa8838 [Hexagon] Add pylint on tests (#13233)
     add 404d95f054 [build][relay][te][tir] remove unused vars / args (#13266)
     add ff6aaeb12a [Frontend][Tensorflow2] Import graph_def to default graph before calling function_def_to_graph_def (#13260)
     add e2b542dcb2 [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   (371f83f9eb)
            \
             N -- N -- N   refs/heads/nightly-docker-update (e2b542dcb2)

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 +-
 docker/install/ubuntu_install_python.sh            |   1 +
 python/tvm/driver/tvmc/transform.py                |   1 +
 python/tvm/relay/frontend/tensorflow2.py           |  30 +-
 python/tvm/rpc/client.py                           |   2 +-
 src/meta_schedule/postproc/postproc.cc             |   4 +-
 src/relay/backend/graph_plan_memory.cc             |   2 +-
 src/relay/backend/te_compiler_cache.cc             |   4 +-
 src/relay/transforms/remove_standalone_reshapes.cc |   4 +-
 src/te/operation/compute_op.cc                     |   4 +-
 src/tir/ir/data_type_rewriter.cc                   |   2 +-
 src/tir/schedule/primitive/cache_index.cc          |   2 +-
 tests/lint/pylint.sh                               |  17 +-
 tests/python/contrib/test_hexagon/pytest_util.py   |  36 +-
 .../test_hexagon/test_async_dma_pipeline.py        | 514 ++++++++++++---------
 .../test_hexagon/test_benchmark_maxpool2d.py       | 190 ++++----
 .../contrib/test_hexagon/test_cache_read_write.py  |   4 +
 .../test_hexagon/test_fixed_point_conversion.py    |  13 +-
 .../test_hexagon/test_fixed_point_multiply.py      | 167 +++----
 .../contrib/test_hexagon/test_memory_alloc.py      |  22 +-
 .../contrib/test_hexagon/test_meta_schedule.py     | 147 +++---
 .../contrib/test_hexagon/test_parallel_hvx.py      |  81 ++--
 .../test_hexagon/test_parallel_hvx_load_vtcm.py    | 252 +++++-----
 .../contrib/test_hexagon/test_parallel_scalar.py   |  63 ++-
 .../contrib/test_hexagon/test_run_unit_tests.py    |   4 +
 tests/python/contrib/test_hexagon/test_sigmoid.py  |  40 +-
 .../test_hexagon/test_software_pipeline_async.py   | 269 +++++------
 .../contrib/test_hexagon/test_vtcm_bandwidth.py    |  53 ++-
 .../test_hexagon/test_wo_qnn_canonicalization.py   |   5 +-
 tests/python/driver/tvmc/test_transform.py         |  57 +++
 tests/python/frontend/caffe/test_forward.py        |   3 +
 32 files changed, 1147 insertions(+), 886 deletions(-)
 create mode 100644 tests/python/driver/tvmc/test_transform.py