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/06/03 22:05:52 UTC

[tvm] branch last-successful updated (b086005f8f -> 4811d702f3)

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 b086005f8f [ci] Fix action expressions for tvm-bot workflow (#11556)
     add 9dceb4e191 [BYOC] Two helper passes for external codegen using RelayToTIR custom pass machinery (#11474)
     add 4811d702f3 [Hexagon] Register strategy for concatenate (#11562)

No new revisions were added by this update.

Summary of changes:
 include/tvm/ir/expr.h                              |   3 +-
 include/tvm/relay/attrs/call.h                     |   2 +-
 include/tvm/relay/function.h                       |  32 +++-
 python/tvm/relay/op/strategy/hexagon.py            |  14 +-
 python/tvm/relay/transform/transform.py            |  70 +++++--
 src/ir/expr.cc                                     |   3 +-
 src/parser/tokenizer.h                             |   4 +-
 src/relay/backend/te_compiler.cc                   |   8 +-
 src/relay/backend/vm/compiler.cc                   |   4 +-
 src/relay/ir/function.cc                           |   2 +-
 src/relay/op/nn/nn.cc                              |   1 +
 src/relay/transforms/compiler_function_utils.cc    | 212 +++++++++++++++++++++
 src/relay/transforms/compiler_function_utils.h     | 135 +++++++++++++
 src/relay/transforms/dead_code.cc                  |   6 +-
 src/relay/transforms/inline.cc                     |   5 +-
 .../transform/test_compiler_function_utils.py      | 162 ++++++++++++++++
 16 files changed, 621 insertions(+), 42 deletions(-)
 create mode 100644 src/relay/transforms/compiler_function_utils.cc
 create mode 100644 src/relay/transforms/compiler_function_utils.h
 create mode 100644 tests/python/relay/transform/test_compiler_function_utils.py