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/27 00:03:57 UTC

[tvm] branch nightly-docker-update updated (bc655e8b66 -> 60752ba428)

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 bc655e8b66 [ci][docker] Nightly Docker image update
     add a61c1ad0f0 [TIR] Fix plan buffer allocation location for loop carried dependencies (#12757)
     add c8423a6843 [Meta Schedule][XGBoost] Update the custom callback function of xgboost in meta schedule (#12141)
     add 46ea2ed42e [MetaSchedule][UX] User Interface for Jupyter Notebook (#12866)
     add cc6e01edc6 [frontend][pytorch]support aten::zero_ operator (#12872)
     add 87085b0e0d [frontend][pytorch]Support aten::Tensor_split operator (#12871)
     add 4ef1465d40 [skip ci] Temporarily disable comments bot (#12903)
     add b6a660be58 [BUILD] Re-enable ccache by default (#12839)
     add 8711ba44b9 [TVMScript] Import TIR methods into the IRBuilder (#12900)
     add fd26813723 [TVMScript] Infer T.match_buffer parameters for region (#12890)
     add e1f3f90588 [TOPI][Hexagon] Implement quantize op for hexagon (#12820)
     add f25a702a1f [TOPI][Hexagon] Add schedule and test for maxpool uint8 layout (#12826)
     add d4fb957ae1 [microTVM][ARM] Improve dense DSP micro kernel (#12908)
     add 830ebc4ec8 [TIR] Refactor IndexMap::Inverse in terms of NonSurjectiveInverse (#12904)
     add 5ddd35c377 [Relay][TE] Add default param name if needed (#12912)
     add 4d5ed07325 [TIR] Fix GetProducer/Consumer for duplicating dep edges (#12910)
     add 60752ba428 [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   (bc655e8b66)
            \
             N -- N -- N   refs/heads/nightly-docker-update (60752ba428)

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:
 .../pr_comment_bot.yml                             |   0
 CMakeLists.txt                                     |   6 +
 Jenkinsfile                                        |  20 +-
 ci/jenkins/Jenkinsfile.j2                          |  20 +-
 cmake/config.cmake                                 |  11 +
 cmake/modules/LibInfo.cmake                        |   1 +
 cmake/utils/CCache.cmake                           |  52 +++
 cmake/utils/Summary.cmake                          |   1 +
 docs/install/from_source.rst                       |   2 +
 include/tvm/script/ir_builder/tir/ir.h             |   8 +
 include/tvm/tir/index_map.h                        |  16 +-
 python/tvm/meta_schedule/cost_model/xgb_model.py   | 169 +++++----
 python/tvm/meta_schedule/testing/relay_workload.py |  18 +-
 python/tvm/meta_schedule/utils.py                  |  18 +-
 python/tvm/relay/frontend/pytorch.py               |  59 +++
 python/tvm/script/ir_builder/tir/ir.py             | 396 ++++++++++++++++++++-
 python/tvm/script/tir/special_stmt.py              |  68 +++-
 .../topi/arm_cpu/mprofile/dsp/micro_kernel/gemm.py |   8 +-
 python/tvm/topi/hexagon/qnn/__init__.py            |   2 +
 python/tvm/topi/hexagon/qnn/quantize.py            |  80 +++++
 python/tvm/topi/hexagon/slice_ops/max_pool2d.py    |  55 ++-
 python/tvm/topi/hexagon/utils.py                   |   5 +
 src/meta_schedule/task_scheduler/gradient_based.cc |  50 ++-
 src/meta_schedule/utils.h                          |  32 ++
 src/relay/backend/te_compiler_cache.cc             |   5 +-
 src/script/ir_builder/tir/ir.cc                    |  11 +
 src/support/libinfo.cc                             |   1 +
 src/tir/analysis/buffer_access_lca_detector.cc     | 106 +++++-
 src/tir/ir/index_map.cc                            |  74 ++--
 src/tir/schedule/primitive/get_block_loop.cc       |  10 +-
 .../python/contrib/test_hexagon/infrastructure.py  |   4 +-
 .../test_hexagon/topi/test_max_pool2d_slice.py     | 105 +++---
 .../contrib/test_hexagon/topi/test_quantize.py     | 121 +++++++
 tests/python/frontend/pytorch/test_forward.py      |  29 ++
 .../unittest/test_meta_schedule_cost_model.py      |  85 +++++
 .../unittest/test_meta_schedule_tune_relay.py      |  18 +-
 .../python/unittest/test_tir_lower_match_buffer.py |   4 +-
 .../python/unittest/test_tir_schedule_utilities.py |  52 +++
 ...sform_plan_update_buffer_allocation_location.py | 109 +++++-
 .../unittest/test_tvmscript_ir_builder_tir.py      |  15 +
 .../python/unittest/test_tvmscript_syntax_sugar.py |  25 ++
 41 files changed, 1592 insertions(+), 279 deletions(-)
 rename .github/{workflows => disabled_workflows}/pr_comment_bot.yml (100%)
 create mode 100644 cmake/utils/CCache.cmake
 create mode 100755 python/tvm/topi/hexagon/qnn/quantize.py
 create mode 100755 tests/python/contrib/test_hexagon/topi/test_quantize.py