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/12 18:52:48 UTC

[tvm] branch last-successful updated (fbf80bb386 -> 6d676badff)

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 fbf80bb386 [microNPU] Add MergeConstants pass (#12029)
     add c1706a933e [Collage] PartitionRule (though without CombinePartitionRule) (#11993)
     add 993a8ea094 [Frontend][TFLite] respect out type of Shape op (#11877)
     add 6d676badff [QNN] Replace nn.leaky_relu with qnn.leaky_relu (#11930)

No new revisions were added by this update.

Summary of changes:
 python/tvm/relay/frontend/qnn_torch.py         |  17 +-
 python/tvm/relay/frontend/tflite.py            |  14 +-
 src/relay/collage/candidate_partition.cc       | 258 +++++++++++++++++
 src/relay/collage/candidate_partition.h        | 180 ++++++++++++
 src/relay/collage/candidate_set.cc             |  76 +++++
 src/relay/collage/candidate_set.h              |  99 +++++++
 src/relay/{op/vm/vm.h => collage/cost.cc}      |  26 +-
 src/relay/collage/cost.h                       | 103 +++++++
 src/relay/collage/partition_rule.cc            | 372 +++++++++++++++++++++++++
 src/relay/collage/partition_rule.h             | 355 +++++++++++++++++++++++
 src/relay/collage/partition_spec.cc            |  87 ++++++
 src/relay/collage/partition_spec.h             | 120 ++++++++
 tests/cpp/relay/collage/partition_rule_test.cc | 303 ++++++++++++++++++++
 tests/python/frontend/tflite/test_forward.py   |  12 +-
 14 files changed, 2006 insertions(+), 16 deletions(-)
 create mode 100644 src/relay/collage/candidate_partition.cc
 create mode 100644 src/relay/collage/candidate_partition.h
 create mode 100644 src/relay/collage/candidate_set.cc
 create mode 100644 src/relay/collage/candidate_set.h
 copy src/relay/{op/vm/vm.h => collage/cost.cc} (68%)
 create mode 100644 src/relay/collage/cost.h
 create mode 100644 src/relay/collage/partition_rule.cc
 create mode 100644 src/relay/collage/partition_rule.h
 create mode 100644 src/relay/collage/partition_spec.cc
 create mode 100644 src/relay/collage/partition_spec.h
 create mode 100644 tests/cpp/relay/collage/partition_rule_test.cc