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/08/21 06:39:26 UTC

[tvm] branch last-successful updated (92355f2ed5 -> cc769fdc95)

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 92355f2ed5 [COMMUNITY] An Wang -> Reviewer (#12517)
     add cc769fdc95 [TVMScript] Printer entry point (#12462)

No new revisions were added by this update.

Summary of changes:
 .../script/{printer/doc_printer.h => printer.h}    | 32 +++++++++-----
 include/tvm/script/printer/doc.h                   |  6 +++
 include/tvm/script/printer/ir_docsifier.h          | 41 +++++++++++++++++
 python/tvm/script/printer/__init__.py              |  1 +
 .../script/printer/{doc_printer.py => entry.py}    | 45 ++++++++++++-------
 python/tvm/script/printer/ir_docsifier.py          | 51 +++++++++++++++++++++-
 src/script/{printer/frame.cc => printer.cc}        | 38 ++++++++--------
 src/script/printer/doc.cc                          |  2 +
 src/script/printer/ir_docsifier.cc                 | 32 ++++++++++++++
 .../test_tvmscript_printer_entry_point.py}         | 17 ++++----
 .../unittest/test_tvmscript_printer_irdocsifier.py | 14 +++++-
 11 files changed, 224 insertions(+), 55 deletions(-)
 copy include/tvm/script/{printer/doc_printer.h => printer.h} (57%)
 copy python/tvm/script/printer/{doc_printer.py => entry.py} (60%)
 copy src/script/{printer/frame.cc => printer.cc} (52%)
 copy tests/python/{contrib/test_opencl/conftest.py => unittest/test_tvmscript_printer_entry_point.py} (73%)