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/11/10 00:01:12 UTC

[tvm] branch nightly-docker-update updated (fc90a21f30 -> 187c320b64)

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


    omit fc90a21f30 [ci][docker] Nightly Docker image update
     add 36b1c5c4d9 [TIR] Remove redundant add in vnni/arm intrin (#13319)
     add 244bceb457 [TIR] Allow folding cast with broadcast and ramp (#13317)
     add 65dbee7f0c [Doc] Add desc of keep_orig_output_dtype for ToMixedPrecision (#13321)
     add 0e395c389c [AOT] Add CreateExecutorMetadata analysis pass (#13250)
     add fbe174bd6c [microTVM][CRT][DOCS] Add a PyTorch tutorial for microTVM with CRT (#13324)
     add 999eee8c1a [ci] Update Jenkins readme to match new directory structure (#13333)
     add 8453c9c357 [MetaSchedule] Fix the order of applying `AutoInline` in `ScheduleUsingAnchorTrace` (#13329)
     add 5dc4186338 [MetaSchedule] Add JSON Database Validation Scripts (#12948)
     add 187c320b64 [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   (fc90a21f30)
            \
             N -- N -- N   refs/heads/nightly-docker-update (187c320b64)

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 +-
 ci/jenkins/Jenkinsfile.j2                          |  20 +-
 ci/jenkins/README.md                               |  10 +-
 docs/conf.py                                       |   1 +
 gallery/how_to/work_with_microtvm/micro_aot.py     |   6 +-
 gallery/how_to/work_with_microtvm/micro_pytorch.py | 206 +++++++
 python/tvm/meta_schedule/profiler.py               |   2 +-
 .../meta_schedule/testing/custom_builder_runner.py |   4 +-
 python/tvm/meta_schedule/testing/tune_utils.py     |  55 +-
 .../tvm/meta_schedule/testing/validate_database.py | 282 +++++++++
 python/tvm/relay/backend/aot.py                    |  34 ++
 python/tvm/relay/transform/transform.py            |   7 +
 python/tvm/tir/tensor_intrin/arm_cpu.py            |   6 +-
 python/tvm/tir/tensor_intrin/x86.py                |   5 +-
 src/meta_schedule/trace_apply.cc                   |  36 +-
 src/relay/backend/aot/aot_lower_main.cc            |   5 +
 src/relay/backend/aot/create_executor_metadata.cc  |  86 +++
 ...ction_metadata.h => create_executor_metadata.h} |  21 +-
 src/relay/backend/utils.h                          |   2 +
 src/runtime/crt/host/Makefile.template             |   2 +-
 src/runtime/crt/host/microtvm_api_server.py        |   2 +
 src/tir/op/op.cc                                   |  11 +-
 tests/cpp/arith_simplify_test.cc                   |  22 +
 .../relay/aot/test_aot_create_executor_metadata.py | 176 ++++++
 tests/python/relay/aot/test_pass_aot_lower_main.py |  24 +-
 ...est_meta_schedule_postproc_rewrite_tensorize.py |   5 +-
 .../unittest/test_meta_schedule_trace_apply.py     | 633 ++++++++++++++++++++-
 tests/scripts/task_python_microtvm.sh              |   1 +
 28 files changed, 1610 insertions(+), 74 deletions(-)
 create mode 100644 gallery/how_to/work_with_microtvm/micro_pytorch.py
 create mode 100644 python/tvm/meta_schedule/testing/validate_database.py
 create mode 100644 src/relay/backend/aot/create_executor_metadata.cc
 copy src/relay/backend/aot/{create_function_metadata.h => create_executor_metadata.h} (64%)
 create mode 100644 tests/python/relay/aot/test_aot_create_executor_metadata.py