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 b55997d [microTVM][RVM] Skip USB device attach if device is already
attached (#8737)
add b72e115 Realize the function op during forward rewrite (#10410)
add 92a80e9 [ci][1/2] Shard `frontend: GPU` job into 2 jobs (#10413)
add 111b2da RelayViz Graphviz renderer (#10400)
add 5e353d5 [Runtime][ThreadPool]Refactor affinity function and support
CPU affinity list setting. (#9802)
add d101c50 [CI][1/2] Update the Python version of pyxir (#10406)
add bd14a4d Modify debug output (#10372)
add f49a853 Fix relative include path (#10402)
No new revisions were added by this update.
Summary of changes:
docker/install/ubuntu1804_install_python.sh | 4 +-
docs/reference/api/python/contrib.rst | 4 +-
gallery/how_to/work_with_relay/using_relay_viz.py | 2 +
include/tvm/runtime/threading_backend.h | 48 ++++-
python/tvm/autotvm/tuner/tuner.py | 18 +-
python/tvm/contrib/relay_viz/__init__.py | 10 +-
python/tvm/contrib/relay_viz/dot.py | 221 +++++++++++++++++++
python/tvm/contrib/relay_viz/interface.py | 10 +-
python/tvm/contrib/relay_viz/terminal.py | 5 +-
src/relay/transforms/forward_rewrite.cc | 3 +
src/runtime/thread_pool.cc | 38 +++-
src/runtime/threading_backend.cc | 251 +++++++++++++---------
tests/cpp/relay/transforms/device_domains_test.cc | 2 +-
tests/cpp/threading_backend_test.cc | 130 ++++++++++-
tests/python/relay/test_pass_alter_op_layout.py | 13 ++
tests/scripts/task_python_frontend.sh | 69 ++++--
16 files changed, 678 insertions(+), 150 deletions(-)
create mode 100644 python/tvm/contrib/relay_viz/dot.py