You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tvm.apache.org by le...@apache.org on 2022/02/01 11:45:47 UTC

[tvm] branch ci-docker-staging updated (7d4821f -> 89bc502)

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.


    omit 7d4821f  Update ci_qemu to v0.10 and Zephyr project generator for Zephyr 2.7
     add 02a7a41  [microNPU] Add support for nearest neighbor and bilinear upsampling (#9841)
     add dad8f62  [Bugfix][Op] Fix shape inference of adv_index (#9717)
     add 36b48a5  [VirtualMachine] fix raw pointer using by VirtualMachine (#9980)
     add c130ea3  [ETHOSN] Ethos(TM)-N 21.11 update (#10061)
     add daaa2ca  [CI] Use Python 3.6 variant of pypa.io (#10114)
     add 24d2a38  [LLVM,TIR] Print LLVM intrinsic names instead of ids (#9964)
     add f9ddcdb  [Ansor] Improve OpenCL support (#10108)
     add 187aeb5  [AUTOTVM] Use opt level 3 when extracting tasks (#10065)
     add 8aff6f1  [CI] Further open up Rust permissions (#10115)
     add 2af42ba  Update ci_qemu to v0.10 and Zephyr project generator for Zephyr 2.7 (#10117)
     new 89bc502  Upgrade tensorflow to version to 2.6.x

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   (7d4821f)
            \
             N -- N -- N   refs/heads/ci-docker-staging (89bc502)

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:
 apps/topi_recipe/gemm/cuda_gemm_square.py          |  21 ---
 docker/install/ubuntu1804_install_python.sh        |   2 +-
 .../install/ubuntu_install_ethosn_driver_stack.sh  |   2 +-
 docker/install/ubuntu_install_rust.sh              |   2 +-
 docker/install/ubuntu_install_sccache.sh           |   2 +-
 docker/install/ubuntu_install_tensorflow.sh        |   6 +-
 docker/install/ubuntu_install_wasmtime.sh          |   2 +-
 include/tvm/runtime/object.h                       |   5 +
 include/tvm/runtime/vm/vm.h                        |   4 +-
 include/tvm/topi/transform.h                       |  36 +----
 python/tvm/autotvm/task/relay_integration.py       |  15 +-
 .../tvm/relay/backend/contrib/ethosu/legalize.py   |  96 ++++++++++++
 .../contrib/ethosu/te/binary_elementwise.py        |  10 +-
 .../relay/backend/contrib/ethosu/te/convolution.py |   5 +-
 .../relay/backend/contrib/ethosu/te/depthwise.py   |   5 +-
 python/tvm/relay/backend/contrib/ethosu/te/dma.py  |  38 ++++-
 .../tvm/relay/backend/contrib/ethosu/te/pooling.py |  10 +-
 .../backend/contrib/ethosu/te/unary_elementwise.py |   5 +-
 python/tvm/relay/backend/contrib/ethosu/tir/dma.py |  27 ++++
 .../relay/backend/contrib/ethosu/tir/pooling.py    |   2 +-
 .../relay/backend/contrib/ethosu/tir/scheduler.py  |   3 +-
 .../backend/contrib/ethosu/tir_to_cs_translator.py |   8 +-
 python/tvm/relay/op/_transform.py                  |  58 +++----
 python/tvm/relay/op/contrib/ethosu.py              | 102 +++++++++++-
 python/tvm/target/codegen.py                       |  16 ++
 src/auto_scheduler/search_task.cc                  |  28 +++-
 src/printer/tir_text_printer.cc                    |  23 ++-
 .../backend/contrib/ethosn/ethosn_api_version.h    |   6 +
 src/relay/op/contrib/ethosu/common.cc              |  17 ++
 src/relay/op/contrib/ethosu/common.h               |   6 +
 src/relay/op/contrib/ethosu/pooling.cc             |  18 ++-
 src/relay/op/tensor/transform.cc                   |  39 +----
 src/runtime/contrib/ethosn/ethosn_device.cc        |  24 ++-
 src/runtime/opencl/opencl_device_api.cc            |   4 +-
 src/runtime/vm/executable.cc                       |   3 +-
 src/runtime/vm/profiler/vm.cc                      |   7 +-
 src/runtime/vm/profiler/vm.h                       |   2 +-
 src/runtime/vm/vm.cc                               |   7 +-
 src/target/llvm/llvm_module.cc                     |  15 ++
 tests/python/contrib/test_ethosn/test_networks.py  |  24 +--
 tests/python/contrib/test_ethosu/infra.py          |   3 +-
 tests/python/contrib/test_ethosu/test_codegen.py   |  41 +++++
 tests/python/contrib/test_ethosu/test_legalize.py  | 172 +++++++++++++++++++++
 .../contrib/test_ethosu/test_replace_pooling.py    |  46 ++++--
 tests/python/contrib/test_ethosu/test_scheduler.py |  16 +-
 .../contrib/test_ethosu/test_type_inference.py     |  17 ++
 tests/python/relay/test_any.py                     |  13 +-
 tests/python/relay/test_op_level3.py               |   1 +
 tests/python/topi/python/test_topi_transform.py    |   2 +-
 tests/python/unittest/test_target_codegen_llvm.py  |   9 ++
 50 files changed, 808 insertions(+), 217 deletions(-)

[tvm] 01/01: Upgrade tensorflow to version to 2.6.x

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

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

commit 89bc5021b16b87d7252eac4c7b9aace6e03dae03
Author: Ophir Frish <op...@arm.com>
AuthorDate: Thu Jan 27 12:28:30 2022 +0200

    Upgrade tensorflow to version to 2.6.x
    
    Upgrade the following versions:
    keras - from 2.4.3 to 2.6
    tensorflow - from 2.4.2 to 2.6.2
    h5py - from version < 3.0 to version 3.1.0
---
 docker/install/ubuntu_install_tensorflow.sh | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/docker/install/ubuntu_install_tensorflow.sh b/docker/install/ubuntu_install_tensorflow.sh
index 8a51fbb..099396f 100755
--- a/docker/install/ubuntu_install_tensorflow.sh
+++ b/docker/install/ubuntu_install_tensorflow.sh
@@ -21,6 +21,6 @@ set -u
 set -o pipefail
 
 pip3 install \
-    "h5py<3.0" \
-    keras==2.4.3 \
-    tensorflow==2.4.2
+    "h5py==3.1.0" \	
+    keras==2.6 \
+    tensorflow==2.6.2