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/08/25 00:00:31 UTC

[tvm] branch nightly-docker-update updated (62b98aee6a -> 4d9cb4672a)

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 62b98aee6a [ci][docker] Nightly Docker image update
     add c15cc5ef6d [Target] Remove deprecated parameters from target (#12416)
     add 577826182f [PyTorch][Fix] Fix for numerically unstable logsigmoid (#12563)
     add e468dc28ea [microNPU] Force compute_cycles_hint to be interpreted as an int64 value (#12558)
     add 90b2f0d369 [CI][CMSIS-NN] Running tests parallel using pytest-xdist (#12557)
     add 989e5a1128 [ETHOSN] Add support for resize (#12535)
     add 1ec2c36912 [TIR][CompactBufferAllocation] Improve upperbound estimation of buffer compaction (#12527)
     add 592148abf6 [Target] Replace IsaAnalyzer with Target Features (#12322)
     add 6e79f64108 [CI] Set test python.contrib.test_onnx.test_resize as xfail (#12568)
     add a0fe74b3c3 [ETHOSN] Support multiply conversion to depthwise (#12403)
     add 038523e5a2 [TIR] Expose Vector-related API in Python (#12571)
     add bf65b396c1 [Hexagon] Add support to run on multiple devices (#12504)
     add f53ee0cecf [Hexagon] Fix missing pytest import (#12565)
     add 1afd059395 [TOPI][Hexagon] Implement quantized avgpool (#12340)
     add 4d9cb4672a [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   (62b98aee6a)
            \
             N -- N -- N   refs/heads/nightly-docker-update (4d9cb4672a)

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 +-
 apps/hexagon_launcher/README.md                    |   4 +-
 apps/howto_deploy/prepare_test_libs.py             |   2 +-
 apps/sgx/src/build_model.py                        |   7 +-
 .../wasm-graph/tools/build_graph_lib.py            |   9 +-
 ci/jenkins/Jenkinsfile.j2                          |  20 +-
 .../tune_with_autoscheduler/ci_logs/matmul.json    |   2 +-
 .../ci_logs/resnet-50-NHWC-B1-llvm.json            |  52 +--
 .../ci_logs/sparse_dense.json                      |   2 +-
 gallery/how_to/tune_with_autotvm/tune_relay_x86.py |   4 +-
 gallery/how_to/work_with_microtvm/micro_tvmc.sh    |   4 +-
 gallery/tutorial/auto_scheduler_matmul_x86.py      |   2 -
 include/tvm/arith/int_set.h                        |  39 ++-
 python/tvm/arith/__init__.py                       |   8 +-
 python/tvm/arith/int_set.py                        |  48 +++
 python/tvm/contrib/ethosu/cascader/scheduler.py    |   6 +-
 python/tvm/contrib/hexagon/pytest_plugin.py        |  62 +++-
 python/tvm/relay/build_module.py                   |  78 -----
 python/tvm/relay/frontend/pytorch.py               |   4 +-
 python/tvm/relay/op/contrib/_ethosn.py             |   1 +
 python/tvm/relay/op/contrib/ethosn.py              |  93 +++++-
 python/tvm/relay/op/strategy/arm_cpu.py            |  17 +-
 python/tvm/target/arm_isa.py                       |  39 ---
 python/tvm/target/target.py                        |  19 +-
 python/tvm/tir/__init__.py                         |   1 +
 python/tvm/tir/op.py                               |  57 ++++
 python/tvm/topi/hexagon/__init__.py                |   1 +
 .../tvm/{script => topi/hexagon/qnn}/__init__.py   |   5 +-
 python/tvm/topi/hexagon/qnn/avg_pool2d.py          | 205 ++++++++++++
 python/tvm/topi/hexagon/slice_ops/__init__.py      |   2 +-
 python/tvm/topi/hexagon/slice_ops/avg_pool2d.py    |  24 +-
 python/tvm/topi/hexagon/utils.py                   | 136 ++++++++
 src/arith/int_set.cc                               | 131 ++++++--
 src/relay/backend/contrib/ethosn/codegen.cc        |  39 +++
 src/relay/backend/contrib/ethosn/codegen_ethosn.h  |   1 +
 .../backend/contrib/ethosn/convert_equivalent.cc   | 144 +++++++++
 src/relay/backend/contrib/ethosn/ethosn_api.cc     |  40 +++
 src/relay/backend/contrib/ethosn/ethosn_api.h      |   8 +
 src/relay/op/make_op.h                             |   2 +
 src/relay/qnn/utils.h                              |   4 +
 src/relay/transforms/pattern_utils.h               |  34 ++
 src/target/target_kind.cc                          |  38 +--
 src/tir/schedule/primitive/compute_at.cc           |   2 +-
 src/tir/schedule/state.cc                          |  14 +-
 src/tir/schedule/utils.h                           |  18 --
 src/tir/transforms/compact_buffer_region.cc        |   2 +-
 tests/cpp/c_codegen_test.cc                        |  10 +-
 tests/cpp/target_test.cc                           |   4 +-
 tests/micro/zephyr/test_zephyr.py                  |   4 +-
 .../test_ethosn/test_convert_equivalents.py        | 142 +++++++++
 tests/python/contrib/test_ethosn/test_multiply.py  | 193 +++++++++++
 tests/python/contrib/test_ethosn/test_resize.py    | 134 ++++++++
 .../python/contrib/test_hexagon/infrastructure.py  |  55 +++-
 .../test_hexagon/test_fixed_point_conversion.py    |  64 ++++
 .../test_hexagon/topi/test_avg_pool2d_slice.py     | 209 +++++++-----
 .../contrib/test_hexagon/topi/test_cast_slice.py   |   2 +
 .../test_hexagon/topi/test_softmax_slice.py        |   1 -
 tests/python/contrib/test_onnx.py                  |   1 +
 tests/python/driver/tvmc/test_target.py            |   6 +-
 tests/python/driver/tvmc/test_target_options.py    |   2 +-
 tests/python/frontend/pytorch/test_forward.py      |   2 +
 tests/python/relay/aot/test_cpp_aot.py             |   2 +-
 tests/python/relay/aot/test_crt_aot.py             |  36 ---
 tests/python/relay/test_build_module.py            |  47 +--
 tests/python/unittest/test_arith_intset.py         | 354 +++++++++++----------
 tests/python/unittest/test_tir_op_types.py         |  24 ++
 .../test_tir_transform_common_subexpr_elim.py      |   2 +-
 .../test_tir_transform_compact_buffer_region.py    | 100 ++++++
 tests/python/unittest/test_tvmscript_roundtrip.py  |   4 +-
 tests/scripts/setup-pytest-env.sh                  |   2 +-
 tests/scripts/task_python_docs.sh                  |   2 +-
 tests/scripts/task_python_hexagon.sh               |  14 +-
 tests/scripts/task_python_microtvm.sh              |   2 +-
 73 files changed, 2182 insertions(+), 686 deletions(-)
 delete mode 100644 python/tvm/target/arm_isa.py
 copy python/tvm/{script => topi/hexagon/qnn}/__init__.py (85%)
 create mode 100644 python/tvm/topi/hexagon/qnn/avg_pool2d.py
 create mode 100644 src/relay/backend/contrib/ethosn/convert_equivalent.cc
 create mode 100644 tests/python/contrib/test_ethosn/test_convert_equivalents.py
 create mode 100644 tests/python/contrib/test_ethosn/test_multiply.py
 create mode 100644 tests/python/contrib/test_ethosn/test_resize.py
 create mode 100644 tests/python/contrib/test_hexagon/test_fixed_point_conversion.py