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/13 22:23:29 UTC

[tvm] branch last-successful updated (4b5dd136d7 -> 261de5302f)

This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch last-successful
in repository https://gitbox.apache.org/repos/asf/tvm.git


    from 4b5dd136d7  [Arith] Updated BufferDomainTouched to use IRVisitorWithAnalyzer (#11970)
     add 261de5302f [Collage] CombinerRule and CandidatePartition::EstimateCost (#12078)

No new revisions were added by this update.

Summary of changes:
 .../{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 +++++
 .../cpp/relay/collage/candidate_partition_test.cc  | 220 ++++++++
 tests/cpp/relay/collage/partition_rule_test.cc     | 596 +++++++++++++++++----
 15 files changed, 2103 insertions(+), 118 deletions(-)
 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