You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tvm.apache.org by jc...@apache.org on 2021/04/18 12:21:59 UTC

[tvm] branch main updated (9a72ba3 -> 1fb32b0)

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

jcf94 pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/tvm.git.


    from 9a72ba3  [frontend][tflite] float16 quant support (#7736)
     add 1fb32b0  [TIR] An analysis pass to calculate workspace size for primfuncs (#7859)

No new revisions were added by this update.

Summary of changes:
 include/tvm/tir/analysis.h                         |   6 ++
 python/tvm/script/parser.py                        |  10 +-
 python/tvm/script/scope_handler.py                 |  22 +++--
 python/tvm/tir/analysis/analysis.py                |  17 ++++
 src/tir/analysis/calculate_workspace.cc            |  78 +++++++++++++++
 .../test_tir_analysis_calculate_workspace.py       | 106 +++++++++++++++++++++
 6 files changed, 224 insertions(+), 15 deletions(-)
 create mode 100644 src/tir/analysis/calculate_workspace.cc
 create mode 100644 tests/python/unittest/test_tir_analysis_calculate_workspace.py