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/09/13 00:01:00 UTC

[tvm] branch nightly-docker-update updated (945dbf853f -> 73af5da6e8)

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


 discard 945dbf853f [ci][docker] Nightly Docker image update
     add 286fadecb8 [TF] Add Bincount support (#12751)
     add 4c863fc115 [TVMScript] Base IRBuilder methods for `Block` (#12748)
     add a63d03a116 [MetaSchedule] Fix typo of compare between GlobalVar and str (#12704)
     add a047e0228a [CI] Always install into a python venv in ci containers (#12663)
     add b22b872da8 [Hexagon] Add Hand written HVX conv2d (#12204)
     add 1222398342 [TFLite] Support quantized GREATER op in TFLite frontend (#12754)
     add 9671aee942 [Hexagon] Validate 2-d physical shapes for TIR-derived schedules (#12662)
     add 4d2766409f [AutoTVM] Fix `None` feature in AutoTVM tuning (#12760)
     add a23b71ce1e [MetaSchedule][Test] Migrate AddRFactor to SEqual (#12758)
     add 73af5da6e8 [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   (945dbf853f)
            \
             N -- N -- N   refs/heads/nightly-docker-update (73af5da6e8)

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 +-
 cmake/modules/Hexagon.cmake                        |  10 +
 docker/Dockerfile.ci_arm                           |  11 +-
 docker/Dockerfile.ci_cortexm                       |  15 +-
 docker/Dockerfile.ci_cpu                           |  11 +-
 docker/Dockerfile.ci_gpu                           |  12 +-
 docker/Dockerfile.ci_hexagon                       |  11 +-
 docker/Dockerfile.ci_i386                          |  11 +-
 docker/Dockerfile.ci_lint                          |  11 +-
 docker/Dockerfile.ci_minimal                       |  11 +-
 docker/Dockerfile.ci_riscv                         |  15 +-
 docker/Dockerfile.ci_wasm                          |  11 +-
 docker/install/ubuntu1804_install_python.sh        |  45 --
 docker/install/ubuntu1804_install_python_venv.sh   |  30 --
 docker/install/ubuntu_install_python.sh            |  79 +++-
 docker/python/bootstrap-requirements.txt           |  82 ++++
 docker/python/bootstrap/.gitignore                 |   1 +
 docker/python/bootstrap/generate.sh                | 100 +++++
 .../python/bootstrap/lockfiles/constraints-3.7.txt | 254 +++++++++++
 .../python/bootstrap/lockfiles/constraints-3.8.txt | 251 +++++++++++
 .../bootstrap/lockfiles/requirements-3.7.txt       |   3 +
 .../bootstrap/lockfiles/requirements-3.8.txt       |   3 +
 docker/python/ci-constraints.txt                   |  39 ++
 docker/with_the_same_user                          |  26 +-
 include/tvm/runtime/hexagon/ops/conv2d.h           | 198 +++++++++
 include/tvm/script/ir_builder/tir/frame.h          |  70 +++
 include/tvm/script/ir_builder/tir/ir.h             |   8 +
 python/tvm/autotvm/testing/tune_relay.py           |  13 +-
 python/tvm/autotvm/tuner/xgboost_cost_model.py     |   7 +-
 python/tvm/meta_schedule/default_config.py         |   2 +-
 python/tvm/meta_schedule/testing/relay_workload.py |   2 +-
 python/tvm/meta_schedule/testing/schedule_rule.py  |  16 +-
 python/tvm/relay/frontend/tensorflow_ops.py        |  41 +-
 python/tvm/relay/frontend/tflite.py                |  19 +-
 python/tvm/script/ir_builder/tir/frame.py          |   5 +
 python/tvm/script/ir_builder/tir/ir.py             |  20 +
 python/tvm/tir/schedule/testing.py                 |   8 +-
 src/meta_schedule/schedule_rule/add_rfactor.cc     |   5 +-
 src/runtime/hexagon/ops/conv2d_fp16_hvx.cc         | 489 +++++++++++++++++++++
 src/runtime/hexagon/ops/conv_utils.cc              | 243 ++++++++++
 src/script/ir_builder/tir/frame.cc                 |  24 +
 src/script/ir_builder/tir/ir.cc                    |  17 +
 src/script/ir_builder/tir/utils.h                  |   9 +
 src/tir/schedule/primitive/sampling.cc             |   4 +-
 .../hexagon/hexagon_fp16_utils_tests.cc            | 289 ++++++++++++
 .../test_hexagon/test_2d_physical_buffers.py       |  59 ++-
 .../test_hexagon/topi/test_conv2d_fp16_intrin.py   | 248 +++++++++++
 tests/python/frontend/tensorflow/test_forward.py   |  35 ++
 .../frontend/tensorflow2/test_functional_models.py |  60 +++
 tests/python/frontend/tflite/test_forward.py       |  49 ++-
 ...test_meta_schedule_schedule_rule_add_rfactor.py | 142 ++++--
 .../unittest/test_tvmscript_ir_builder_tir.py      |  27 ++
 53 files changed, 2903 insertions(+), 288 deletions(-)
 delete mode 100755 docker/install/ubuntu1804_install_python.sh
 delete mode 100755 docker/install/ubuntu1804_install_python_venv.sh
 create mode 100644 docker/python/bootstrap-requirements.txt
 create mode 100644 docker/python/bootstrap/.gitignore
 create mode 100755 docker/python/bootstrap/generate.sh
 create mode 100644 docker/python/bootstrap/lockfiles/constraints-3.7.txt
 create mode 100644 docker/python/bootstrap/lockfiles/constraints-3.8.txt
 create mode 100644 docker/python/bootstrap/lockfiles/requirements-3.7.txt
 create mode 100644 docker/python/bootstrap/lockfiles/requirements-3.8.txt
 create mode 100644 docker/python/ci-constraints.txt
 create mode 100644 include/tvm/runtime/hexagon/ops/conv2d.h
 create mode 100644 src/runtime/hexagon/ops/conv2d_fp16_hvx.cc
 create mode 100644 src/runtime/hexagon/ops/conv_utils.cc
 create mode 100644 tests/cpp-runtime/hexagon/hexagon_fp16_utils_tests.cc
 mode change 100644 => 100755 tests/python/contrib/test_hexagon/test_2d_physical_buffers.py
 create mode 100644 tests/python/contrib/test_hexagon/topi/test_conv2d_fp16_intrin.py