You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tvm.apache.org by tq...@apache.org on 2020/07/16 01:34:36 UTC

[incubator-tvm] branch master updated (f9e2b95 -> 6360ad1)

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

tqchen pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-tvm.git.


    from f9e2b95  [BYOC][Optimization] Run accelerator specific optimizations  (#6068)
     add 6360ad1  [Relay][Pass] Merge two consecutive reshape ops (#6052)

No new revisions were added by this update.

Summary of changes:
 include/tvm/relay/dataflow_matcher.h          |  16 ++--
 include/tvm/relay/transform.h                 |   7 ++
 python/tvm/relay/dataflow_pattern/__init__.py |  32 ++++---
 python/tvm/relay/op/_transform.py             |   2 +-
 python/tvm/relay/op/transform.py              |   2 +-
 python/tvm/relay/transform/transform.py       |  13 +++
 src/relay/backend/build_module.cc             |   1 +
 src/relay/backend/vm/compiler.cc              |   4 +
 src/relay/ir/dataflow_matcher.cc              |  84 +++++++++++++-----
 src/relay/op/tensor/transform.cc              |   6 +-
 src/relay/transforms/simplify_expr.cc         | 123 ++++++++++++++++++++++++++
 tests/python/relay/test_dataflow_pattern.py   |  12 +++
 tests/python/relay/test_pass_simplify_expr.py |  60 +++++++++++++
 13 files changed, 320 insertions(+), 42 deletions(-)
 create mode 100644 src/relay/transforms/simplify_expr.cc
 create mode 100644 tests/python/relay/test_pass_simplify_expr.py