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/08 00:01:44 UTC

[tvm] branch nightly-docker-update updated (ab870a4365 -> d3e14dd1a8)

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 ab870a4365 [ci][docker] Nightly Docker image update
     add 85bf80c822 [Docs] Add Commit Message Guideline (#12689)
     add 6cd31e7bf1 [TIR] Fix pragma_loop_partition_hint attrs should check it's value (#12699)
     add 291dd2f063 support false-positive fast math (#12702)
     add b55ffcd18b [ETHOSN] Add support for transpose convolution (#12674)
     add ff9a5309ec [microTVM][Zephyr] Enable -O2 optimization on build by default (#12718)
     add 269d536be0 [HEXAGON] [TOPI] Dequantize (#12677)
     add 2622ac9e63 [Build] Update C++ standard to C++17 for AOT, iOS, VTA (#12712)
     add 010c662938 [TVMScript] IRBuilder methods for `IRModule` (#12694)
     add bee5627908 [TFLite][CI] Update TensorFlow dependency to 2.9.1 (#12131)
     add 7f788dca4e [ci] Add onnx model to S3 (#12716)
     add 546a7da2fe [ci] Re-balance shards (#12473)
     add d3e14dd1a8 [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   (ab870a4365)
            \
             N -- N -- N   refs/heads/nightly-docker-update (d3e14dd1a8)

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:
 .github/workflows/upload_ci_resource.yml           |    2 +
 Jenkinsfile                                        | 1417 ++++++++------------
 apps/ios_rpc/tvmrpc.xcodeproj/project.pbxproj      |    4 +-
 .../zephyr/template_project/microtvm_api_server.py |    9 +-
 ci/jenkins/Jenkinsfile.j2                          |   20 +-
 ci/jenkins/Test.groovy.j2                          |   12 +-
 ci/jenkins/generate.py                             |   23 +-
 cmake/modules/contrib/TFLite.cmake                 |    2 +
 docker/Dockerfile.ci_cortexm                       |    3 +
 docker/Dockerfile.ci_cpu                           |    3 +
 docker/Dockerfile.ci_gpu                           |    3 +
 docker/Dockerfile.ci_riscv                         |    3 +
 docker/install/ubuntu_install_cmake_source.sh      |    4 +-
 docker/install/ubuntu_install_python_package.sh    |    2 +-
 docker/install/ubuntu_install_tensorflow.sh        |    5 +-
 .../install/ubuntu_install_tensorflow_aarch64.sh   |   23 +-
 docker/install/ubuntu_install_tflite.sh            |   13 +-
 docker/install/ubuntu_install_vela.sh              |    2 +-
 docker/install/ubuntu_install_zephyr.sh            |    3 +-
 docs/contribute/pull_request.rst                   |  113 +-
 include/tvm/script/ir_builder/ir/frame.h           |   71 +
 .../tvm/script/ir_builder/ir/ir.h                  |   31 +-
 include/tvm/support/span.h                         |    2 +-
 include/tvm/topi/elemwise.h                        |    2 +-
 python/tvm/contrib/hexagon/pytest_plugin.py        |    3 +-
 python/tvm/relay/op/contrib/ethosn.py              |   18 +
 .../_ctypes => script/ir_builder/ir}/__init__.py   |    4 +-
 .../{arith => script/ir_builder/ir}/_ffi_api.py    |    5 +-
 .../__init__.py => script/ir_builder/ir/frame.py}  |   11 +-
 .../tvm/script/ir_builder/ir/ir.py                 |   11 +-
 python/tvm/topi/hexagon/qnn/__init__.py            |    5 +
 python/tvm/topi/hexagon/qnn/dequantize.py          |   94 ++
 python/tvm/topi/hexagon/utils.py                   |    7 +
 src/relay/backend/contrib/ethosn/codegen.cc        |   39 +
 src/relay/backend/contrib/ethosn/codegen_ethosn.h  |    1 +
 .../backend/contrib/ethosn/convert_equivalent.cc   |   15 +-
 src/relay/backend/contrib/ethosn/ethosn_api.cc     |  126 ++
 src/relay/backend/contrib/ethosn/ethosn_api.h      |   23 +
 .../utils.cc => script/ir_builder/ir/frame.cc}     |   31 +-
 src/{topi/vision.cc => script/ir_builder/ir/ir.cc} |   27 +-
 src/tir/transforms/loop_partition.cc               |   17 +-
 tests/python/contrib/test_ethosn/infrastructure.py |   43 +
 tests/python/contrib/test_ethosn/test_conv2d.py    |   21 +-
 .../contrib/test_ethosn/test_conv2d_transpose.py   |  234 ++++
 .../python/contrib/test_hexagon/infrastructure.py  |    2 +
 ...test_tanh_slice.py => test_dequantize_slice.py} |   80 +-
 tests/python/relay/aot/test_cpp_aot.py             |    2 +-
 .../unittest/test_tir_transform_loop_partition.py  |    2 +-
 ...se.py => test_tvmscript_ir_builder_irmodule.py} |   29 +-
 tests/scripts/request_hook/request_hook.py         |    1 +
 tests/scripts/setup-pytest-env.sh                  |   10 +-
 vta/python/vta/exec/rpc_server.py                  |    2 +-
 52 files changed, 1554 insertions(+), 1081 deletions(-)
 create mode 100644 include/tvm/script/ir_builder/ir/frame.h
 copy src/relay/backend/param_dict.h => include/tvm/script/ir_builder/ir/ir.h (66%)
 copy python/tvm/{_ffi/_ctypes => script/ir_builder/ir}/__init__.py (88%)
 copy python/tvm/{arith => script/ir_builder/ir}/_ffi_api.py (88%)
 copy python/tvm/{relay/backend/contrib/uma/api/__init__.py => script/ir_builder/ir/frame.py} (77%)
 copy docker/install/ubuntu_install_dgl.sh => python/tvm/script/ir_builder/ir/ir.py (79%)
 mode change 100755 => 100644
 create mode 100644 python/tvm/topi/hexagon/qnn/dequantize.py
 copy src/{auto_scheduler/utils.cc => script/ir_builder/ir/frame.cc} (58%)
 mode change 100755 => 100644
 copy src/{topi/vision.cc => script/ir_builder/ir/ir.cc} (68%)
 create mode 100644 tests/python/contrib/test_ethosn/test_conv2d_transpose.py
 copy tests/python/contrib/test_hexagon/topi/{test_tanh_slice.py => test_dequantize_slice.py} (57%)
 copy tests/python/unittest/{test_tvmscript_ir_builder_base.py => test_tvmscript_ir_builder_irmodule.py} (62%)