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

[incubator-tvm] branch master updated (54641ec -> 10bff27)

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

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


    from 54641ec  [Bugfix] Fix reshape (#5739)
     add 10bff27  [REFACTOR][TIR] Provide->ProducerStore, Realize->ProducerRealize. (#5750)

No new revisions were added by this update.

Summary of changes:
 include/tvm/tir/stmt.h                             | 170 +++++++++------------
 include/tvm/tir/stmt_functor.h                     |  16 +-
 python/tvm/te/hybrid/parser.py                     |   8 +-
 python/tvm/te/hybrid/util.py                       |   8 +-
 python/tvm/tir/__init__.py                         |   4 +-
 python/tvm/tir/stmt.py                             |  40 ++---
 src/contrib/hybrid/codegen_hybrid.cc               |  42 ++---
 src/contrib/hybrid/codegen_hybrid.h                |  12 +-
 src/te/operation/compute_op.cc                     |   9 +-
 src/te/operation/cross_thread_reduction.cc         |   4 +-
 src/te/operation/extern_op.cc                      |   3 +-
 src/te/operation/hybrid_op.cc                      |  10 +-
 src/te/operation/scan_op.cc                        |   2 +-
 src/te/schedule/schedule_ops.cc                    |  26 ++--
 .../schedule_postproc_rewrite_for_tensor_core.cc   | 137 +++++++----------
 src/te/schedule/schedule_postproc_to_primfunc.cc   |  14 +-
 src/tir/ir/stmt.cc                                 |  95 +++++-------
 src/tir/ir/stmt_functor.cc                         |  16 +-
 src/tir/transforms/inject_virtual_thread.cc        |   2 +-
 src/tir/transforms/remove_no_op.cc                 |   4 +-
 src/tir/transforms/storage_flatten.cc              |   4 +-
 src/tir/transforms/vectorize_loop.cc               |  14 +-
 tests/lint/git-clang-format.sh                     |  14 +-
 tests/python/unittest/test_te_hybrid_script.py     |  40 ++---
 tests/python/unittest/test_te_tensor.py            |   4 +-
 tests/python/unittest/test_tir_constructor.py      |  10 --
 .../test_tir_transform_lower_warp_memory.py        |   2 +-
 27 files changed, 301 insertions(+), 409 deletions(-)