You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tvm.apache.org by an...@apache.org on 2020/03/02 06:23:54 UTC

[incubator-tvm] branch master updated (892dc91 -> 0fb4836)

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

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


    from 892dc91  [Doc]refine the example description of max/min/sum/tag_scope (#4974)
     add 0fb4836  [Relay][Pass] Add inline pass (#4927)

No new revisions were added by this update.

Summary of changes:
 include/tvm/relay/expr.h               |   9 +
 include/tvm/relay/transform.h          |   8 +
 python/tvm/relay/transform.py          |  13 +
 src/relay/ir/expr.cc                   |   6 +
 src/relay/pass/call_graph.cc           |   9 +-
 src/relay/pass/call_graph.h            |  12 +-
 src/relay/pass/inline.cc               | 229 +++++++++
 tests/python/relay/test_pass_inline.py | 837 +++++++++++++++++++++++++++++++++
 8 files changed, 1118 insertions(+), 5 deletions(-)
 create mode 100644 src/relay/pass/inline.cc
 create mode 100644 tests/python/relay/test_pass_inline.py