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/26 00:00:43 UTC

[tvm] branch nightly-docker-update updated (4d9cb4672a -> 198494c6dd)

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 4d9cb4672a [ci][docker] Nightly Docker image update
     add 17989e8ab5 [microTVM] Fix `build` directory exists error (#12575)
     add b8fbfe26ae [MicroTVM] fix compile error when the compiler implements char as unsigned (#12519)
     add cd8fd9121d [TIR] Expose `shift_left` and `shift_right` to Python (#12584)
     add 9aac161a46 [MetaSchedule] Add software pipeline in CUDA tensor core auto tensorization (#12544)
     add b38738434b [TIR] Expose WMMA-related TensorCore builtins (#12589)
     add 40bdea8d7a [PyTorch] Add aten::new_empty (#12591)
     add fb7cf97fbc [CI] Install xgboost in Hexagon image (#12592)
     add cc19cdd711 [microTVM][Zephyr] Add recommended heap size for NRF and qemu_x86 (#12585)
     add 56b7c8ae96 [CI] Assert some unittests are not skipped in CI (#12436)
     add 61c034ae27 [DOC] fix code-block error in debuggging TVM part (#12597)
     add b547106fde [CI] github_cc_reviewers: Catch all exceptions so all reviewers can be processed (#12578)
     add 399f2e9b70 [microNPU] Remove xfail from tests relating to #12511 (#12570)
     add f7c143608f [ETHOSN] Support conversion of add to depthwise (#12531)
     add 21db1eb586 [F2QI] Fix a rounding error on AvgPool when input and output affine scales differ (#12577)
     add bb00a15c26 [CUDA][CodeGen] Fix cuda codegen's fp16 inf literal (#12581)
     add 01fcdfcf5f [ci] Default to n=2 for test parallelism (#12414)
     add 8d60b3cbbc [Runtime] Change default alignment to 64 bytes. (#12586)
     add 5db38ba899 [COMMUNITY] @cconvey -> Reviewer (#12598)
     add a9f7c32e42 [skip ci][Community] Wuwei Lin -> PMC (#12605)
     add 198494c6dd [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   (4d9cb4672a)
            \
             N -- N -- N   refs/heads/nightly-docker-update (198494c6dd)

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/{docs_bot.yml => tests_bot.yml}  |  11 +-
 CONTRIBUTORS.md                                    |   3 +-
 Jenkinsfile                                        |  80 +++++-
 apps/microtvm/zephyr/template_project/boards.json  |   8 +-
 .../zephyr/template_project/microtvm_api_server.py |   2 +
 ci/jenkins/Jenkinsfile.j2                          |  22 +-
 ci/jenkins/macros.j2                               |   3 +
 docker/Dockerfile.ci_hexagon                       |   4 +
 docs/dev/how_to/debugging_tvm.rst                  |   2 +-
 include/tvm/meta_schedule/schedule_rule.h          |   3 +-
 include/tvm/runtime/device_api.h                   |   4 +-
 python/tvm/meta_schedule/default_config.py         |   1 +
 .../schedule_rule/multi_level_tiling.py            |   4 +
 python/tvm/meta_schedule/testing/schedule_rule.py  |   2 +
 python/tvm/relay/frontend/pytorch.py               |  16 ++
 python/tvm/relay/op/contrib/ethosn.py              |  43 +++-
 .../transform/fake_quantization_to_integer.py      |  64 ++++-
 python/tvm/testing/plugin.py                       |  42 ++++
 python/tvm/tir/__init__.py                         |   9 +-
 python/tvm/tir/op.py                               | 274 +++++++++++++++++++++
 python/tvm/tir/tensor_intrin/cuda.py               |  54 ++--
 .../multi_level_tiling_tensor_core.cc              | 122 ++++++++-
 src/printer/tir_text_printer.cc                    |   2 +-
 src/relay/backend/contrib/ethosn/codegen.cc        |   8 +-
 .../backend/contrib/ethosn/convert_equivalent.cc   | 109 +++++++-
 src/runtime/crt/common/crt_runtime_api.c           |   2 +-
 src/runtime/crt/graph_executor/load_json.c         |   2 +-
 src/target/source/codegen_cuda.cc                  |   6 +-
 tests/python/ci/test_ci.py                         | 179 ++++++++++++++
 tests/python/contrib/test_dlpack.py                |  10 +-
 tests/python/contrib/test_ethosn/infrastructure.py |   3 +-
 tests/python/contrib/test_ethosn/test_addition.py  | 214 ++++++++++++----
 .../test_ethosn/test_convert_equivalents.py        |  99 +++++---
 tests/python/contrib/test_ethosn/test_networks.py  |   2 +-
 tests/python/contrib/test_ethosu/test_codegen.py   |   5 -
 .../test_ethosu/test_tir_to_cs_translator.py       |  68 ++---
 tests/python/contrib/test_ethosu/test_vela_api.py  |  18 +-
 tests/python/frontend/pytorch/test_forward.py      |  17 ++
 tests/python/relay/test_op_level3.py               |  16 +-
 .../test_pass_fake_quantization_to_integer.py      |  15 +-
 ...ta_schedule_schedule_rule_multi_level_tiling.py | 125 ++++++++++
 .../test_tir_analysis_calculate_workspace.py       |  16 +-
 tests/python/unittest/test_tir_intrin.py           |   8 +-
 tests/python/unittest/test_tir_op_types.py         |  59 +++++
 .../python/unittest/test_tir_schedule_analysis.py  |   6 +-
 .../python/unittest/test_tir_schedule_reduction.py |  16 +-
 .../unittest/test_tir_schedule_storage_align.py    |  18 +-
 .../python/unittest/test_tir_schedule_tensorize.py |  30 +--
 .../test_tir_transform_convert_for_loops_serial.py |   8 +-
 .../test_tir_transform_inject_rolling_buffer.py    |  12 +-
 tests/python/unittest/test_tir_usmp_algo.py        |  18 +-
 .../test_tir_usmp_analysis_extract_bufferinfo.py   | 138 +++++------
 ...ransform_convert_pool_allocations_to_offsets.py |  36 +--
 .../test_tir_usmp_transform_create_io_allocates.py |  48 ++--
 tests/python/unittest/test_tir_usmp_utils.py       |  18 +-
 tests/python/unittest/test_tvmscript_complete.py   |  18 +-
 tests/python/unittest/test_tvmscript_roundtrip.py  |  36 +--
 .../python/unittest/test_tvmscript_syntax_sugar.py |  12 +-
 tests/python/unittest/test_tvmscript_type.py       |   6 +-
 tests/scripts/github_cc_reviewers.py               |   6 +-
 tests/scripts/github_skipped_tests_comment.py      | 256 +++++++++++++++++++
 tests/scripts/setup-pytest-env.sh                  |   8 +-
 62 files changed, 1979 insertions(+), 467 deletions(-)
 copy .github/workflows/{docs_bot.yml => tests_bot.yml} (55%)
 create mode 100755 tests/scripts/github_skipped_tests_comment.py