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 61bea50 [Tutorial] Add a tutorial for PyTorch (#4936)
add eba50ad [Relay][pass] call graph for relay (#4922)
No new revisions were added by this update.
Summary of changes:
python/tvm/relay/__init__.py | 4 +
python/tvm/relay/call_graph.py | 144 ++++++++++
src/relay/pass/call_graph.cc | 339 ++++++++++++++++++++++
src/relay/pass/call_graph.h | 509 ++++++++++++++++++++++++++++++++++
tests/python/relay/test_call_graph.py | 150 ++++++++++
5 files changed, 1146 insertions(+)
create mode 100644 python/tvm/relay/call_graph.py
create mode 100644 src/relay/pass/call_graph.cc
create mode 100644 src/relay/pass/call_graph.h
create mode 100644 tests/python/relay/test_call_graph.py