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 18385d300e [ci][docker] Nightly Docker image update
     add ca88c522fb [LLVM] Update creation of llvm::DebugLoc, remove 
TVM_LLVM_VERSION < 70 (#12069)
     add 5ad27ef650 [CMSIS_NN] Align CMSIS-NN in TVM to TFLu SHA (#12030)
     add c30b420f61 [TOPI, x86] Properly handle fused ops in TE softmax 
schedule   (#12015)
     add 6a6093bc18 fold const or empty iter partition (#12080)
     add 7d9a07ccc7 [TIR][Schedule] Refactor Tensorize (#12070)
     add 4b5dd136d7  [Arith] Updated BufferDomainTouched to use 
IRVisitorWithAnalyzer (#11970)
     add 261de5302f [Collage] CombinerRule and CandidatePartition::EstimateCost 
(#12078)
     add a9c610f1c0 [TVMScript] Add ObjectPath class (#11977)
     add 0cf90d296f [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   (18385d300e)
            \
             N -- N -- N   refs/heads/nightly-docker-update (0cf90d296f)

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                                        |  16 +-
 apps/microtvm/cmsisnn/Makefile                     |  39 +-
 apps/microtvm/ethosu/Makefile                      |  30 +-
 ci/jenkins/Jenkinsfile.j2                          |  16 +-
 docker/install/ubuntu_install_cmsis.sh             |   4 +-
 include/tvm/arith/analyzer.h                       |  46 +-
 include/tvm/node/object_path.h                     | 282 +++++++
 python/tvm/runtime/object_path.py                  | 124 +++
 python/tvm/topi/x86/nn.py                          |  50 +-
 src/arith/analyzer.cc                              |  26 +-
 src/arith/domain_touched.cc                        |  43 +-
 src/arith/int_set.cc                               | 211 ++++-
 src/arith/ir_visitor_with_analyzer.cc              | 126 +++
 src/arith/ir_visitor_with_analyzer.h               |  45 +-
 src/node/object_path.cc                            | 310 ++++++++
 .../backend/contrib/cmsisnn/tir_to_runtime.cc      |  12 +-
 .../{cost.cc => candidate_function_cache.cc}       |  28 +-
 src/relay/collage/candidate_function_cache.h       |  79 ++
 src/relay/collage/candidate_partition.cc           | 100 +++
 src/relay/collage/candidate_partition.h            |  10 +
 src/relay/collage/combiner_rule.cc                 | 395 ++++++++++
 src/relay/collage/combiner_rule.h                  | 229 ++++++
 src/relay/collage/cost.h                           |   5 +
 src/relay/collage/cost_estimator.cc                | 132 ++++
 src/relay/collage/cost_estimator.h                 | 104 +++
 src/relay/collage/name_supply.cc                   |  90 +++
 src/relay/collage/{cost.cc => name_supply.h}       |  41 +-
 src/relay/collage/partition_rule.cc                |  60 ++
 src/relay/collage/partition_rule.h                 | 132 ++++
 src/target/llvm/codegen_cpu.cc                     |  27 +-
 src/target/source/codegen_c_host.cc                |   1 +
 src/tir/schedule/primitive/blockize_tensorize.cc   | 853 ++++++++++-----------
 src/tir/transforms/loop_partition.cc               |  30 +-
 src/tir/transforms/storage_flatten.cc              |   1 +
 src/tir/transforms/texture_flatten.cc              |   1 +
 .../cpp/relay/collage/candidate_partition_test.cc  | 220 ++++++
 tests/cpp/relay/collage/partition_rule_test.cc     | 596 +++++++++++---
 tests/python/frontend/pytorch/test_forward.py      |  40 +
 tests/python/relay/aot/corstone300.mk              |  16 +-
 tests/python/unittest/test_object_path.py          | 149 ++++
 tests/python/unittest/test_target_codegen_llvm.py  |   6 +-
 .../python/unittest/test_tir_schedule_blockize.py  | 322 ++++----
 42 files changed, 4114 insertions(+), 933 deletions(-)
 create mode 100644 include/tvm/node/object_path.h
 create mode 100644 python/tvm/runtime/object_path.py
 create mode 100644 src/arith/ir_visitor_with_analyzer.cc
 create mode 100644 src/node/object_path.cc
 copy src/relay/collage/{cost.cc => candidate_function_cache.cc} (50%)
 create mode 100644 src/relay/collage/candidate_function_cache.h
 create mode 100644 src/relay/collage/combiner_rule.cc
 create mode 100644 src/relay/collage/combiner_rule.h
 create mode 100644 src/relay/collage/cost_estimator.cc
 create mode 100644 src/relay/collage/cost_estimator.h
 create mode 100644 src/relay/collage/name_supply.cc
 copy src/relay/collage/{cost.cc => name_supply.h} (54%)
 create mode 100644 tests/cpp/relay/collage/candidate_partition_test.cc
 create mode 100644 tests/python/unittest/test_object_path.py

Reply via email to