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/07/08 00:00:48 UTC

[tvm] branch nightly-docker-update updated (1703bca51d -> b06e042724)

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 1703bca51d [ci][docker] Nightly Docker image update
     add 1392e64e0b [Arith] Allow constant values in InverseAffineIterMap (#12026)
     add 9f4bf38b57 [TVMScript] Doc Base Class & DocPrinter Scaffolding (#11971)
     add 40d242a3c8 [Pytorch] add aten::rnn_tanh, aten::rnn_relu (#12017)
     add b9aa3564dc [TIR] Revert #11428 and move loop dependent alloc extent check after region union (#12019)
     add 7874bf806e [MetaSchedule] Support ApplyHistoryBest Direct Dispatch (#12016)
     add c76d8e2bdb [TOPI] [Hexagon] Reshape slice op (#11983)
     add af4373f2fb [Fix] fix python setup.py file bug (#12000)
     add 013d5e8fcb [MetaSchedule][Minor] Stability Improvements (#12014)
     add 99d42b2238 [MetaSchedule][Testing] Test search space of conv1d (#12032)
     add a8e329443d [Pylint] Pylint integration_tests folder (#11672)
     add b06e042724 [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   (1703bca51d)
            \
             N -- N -- N   refs/heads/nightly-docker-update (b06e042724)

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:
 CMakeLists.txt                                     |   1 +
 Jenkinsfile                                        |  14 +-
 ci/jenkins/Jenkinsfile.j2                          |  14 +-
 include/tvm/meta_schedule/apply_history_best.h     |   8 +-
 include/tvm/script/printer/doc.h                   | 165 ++++++
 .../printer/doc_printer.h}                         |  32 +-
 python/setup.py                                    |  20 +-
 python/tvm/meta_schedule/apply_history_best.py     |   9 +-
 .../tvm/meta_schedule/testing/space_generation.py  |  65 ++-
 python/tvm/meta_schedule/testing/tune_utils.py     |  26 +-
 python/tvm/relay/frontend/common.py                |  40 ++
 python/tvm/relay/frontend/pytorch.py               | 189 ++++++-
 .../{relay/_make.py => script/printer/__init__.py} |  11 +-
 python/tvm/{arith => script/printer}/_ffi_api.py   |   5 +-
 python/tvm/script/printer/doc.py                   |  49 ++
 .../dense.py => script/printer/doc_printer.py}     |  27 +-
 python/tvm/topi/hexagon/slice_ops/__init__.py      |   1 +
 .../slice_ops/{batch_flatten.py => reshape.py}     |  87 ++-
 src/arith/iter_affine_map.cc                       |   4 +-
 src/meta_schedule/apply_history_best.cc            |  10 +-
 .../script/printer/base_doc_printer.cc             |  42 +-
 src/script/printer/base_doc_printer.h              | 131 +++++
 .../printer/doc.cc}                                |  42 +-
 src/script/printer/python_doc_printer.cc           |  70 +++
 src/tir/transforms/compact_buffer_region.cc        |  58 +-
 tests/lint/pylint.sh                               |   1 +
 .../test_hexagon/topi/test_batch_flatten.py        | 101 ----
 .../contrib/test_hexagon/topi/test_reshape.py      | 168 ++++++
 tests/python/frontend/pytorch/test_rnns.py         |  79 +++
 .../_cy2 => tests/python/integration}/__init__.py  |   2 +-
 tests/python/integration/test_arm_mprofile_dsp.py  |  10 +-
 tests/python/integration/test_dot.py               |  43 +-
 tests/python/integration/test_ewise.py             | 278 +++++-----
 tests/python/integration/test_ewise_fpga.py        |  75 +--
 tests/python/integration/test_gemm.py              | 115 ++--
 tests/python/integration/test_lower.py             | 360 ++++++++-----
 .../test_meta_schedule_auto_tensorize.py           |  61 ++-
 tests/python/integration/test_reduce.py            | 585 ++++++++++++---------
 tests/python/integration/test_scan.py              |  59 ++-
 tests/python/integration/test_tuning.py            | 188 ++++---
 tests/python/integration/test_winograd_nnpack.py   |  67 ++-
 .../python/unittest/test_arith_iter_affine_map.py  |  13 +
 .../unittest/test_meta_schedule_integration.py     |  23 +
 .../unittest/test_meta_schedule_space_cuda.py      | 115 ++++
 .../test_tir_transform_compact_buffer_region.py    |  60 +++
 .../test_tvmscript_printer_doc.py}                 |  24 +-
 .../test_tvmscript_printer_python_doc_printer.py   |  53 ++
 tests/scripts/task_mypy.sh                         |   3 +
 48 files changed, 2531 insertions(+), 1072 deletions(-)
 create mode 100644 include/tvm/script/printer/doc.h
 copy include/tvm/{runtime/executor_info.h => script/printer/doc_printer.h} (60%)
 copy python/tvm/{relay/_make.py => script/printer/__init__.py} (77%)
 copy python/tvm/{arith => script/printer}/_ffi_api.py (90%)
 create mode 100644 python/tvm/script/printer/doc.py
 copy python/tvm/{topi/hexagon/dense.py => script/printer/doc_printer.py} (63%)
 mode change 100755 => 100644 python/tvm/topi/hexagon/slice_ops/__init__.py
 copy python/tvm/topi/hexagon/slice_ops/{batch_flatten.py => reshape.py} (51%)
 copy include/tvm/topi/utils.h => src/script/printer/base_doc_printer.cc (57%)
 create mode 100644 src/script/printer/base_doc_printer.h
 copy src/{tir/transforms/decorate_device_scope.cc => script/printer/doc.cc} (51%)
 create mode 100644 src/script/printer/python_doc_printer.cc
 delete mode 100644 tests/python/contrib/test_hexagon/topi/test_batch_flatten.py
 create mode 100644 tests/python/contrib/test_hexagon/topi/test_reshape.py
 copy {python/tvm/_ffi/_cy2 => tests/python/integration}/__init__.py (93%)
 create mode 100644 tests/python/unittest/test_meta_schedule_space_cuda.py
 copy tests/python/{contrib/test_opencl/conftest.py => unittest/test_tvmscript_printer_doc.py} (64%)
 create mode 100644 tests/python/unittest/test_tvmscript_printer_python_doc_printer.py