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/02/21 12:12:54 UTC

[tvm] branch last-successful updated (6591cba -> d65ff65)

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 6591cba  Parameterize test_link_params. (#9276)
     add cae2680  [Relay] [Virtual Device] Store function result virtual device in virtual_device_ field (#9848)
     add 6bce2c5  [ci] Disable flaky microTVM tests (#10313)
     add b445d66  [ci] Disable flaky cmsisnn tests (#10315)
     add 73cf51b  [TE][Fix] Comparison of the output tensor (#9829)
     add 8d76075  [TIR] add support for multi-blocking layout and their transformation (#9996)
     add d65ff65  [Arith] Support integer BufferLoad in IntervalSetEvaluator (#10327)

No new revisions were added by this update.

Summary of changes:
 include/tvm/ir/expr.h                              |  12 +++
 include/tvm/ir/function.h                          |  10 --
 include/tvm/target/virtual_device.h                |   8 ++
 include/tvm/te/operation.h                         |   8 +-
 include/tvm/tir/data_layout.h                      |  14 ++-
 include/tvm/tir/op.h                               |  27 ++++++
 include/tvm/topi/transform.h                       |   6 +-
 python/tvm/te/hybrid/parser.py                     |   2 +-
 python/tvm/te/tensor.py                            |   5 +-
 python/tvm/topi/x86/conv2d_alter_op.py             |  19 +---
 src/arith/int_set.cc                               |  18 ++++
 src/parser/parser.cc                               |  15 ++-
 src/printer/relay_text_printer.cc                  |   6 ++
 src/relay/backend/graph_plan_memory.cc             |   2 +
 src/relay/op/memory/on_device.cc                   |  11 ++-
 src/te/operation/extern_op.cc                      |   1 +
 src/te/operation/hybrid_op.cc                      |  11 ++-
 src/te/operation/scan_op.cc                        |   2 +
 src/te/operation/tensor_compute_op.cc              |   1 +
 src/te/schedule/schedule_dataflow_rewrite.cc       |   2 +-
 src/te/schedule/schedule_ops.cc                    |  12 ++-
 src/te/tensor.cc                                   |  23 +++--
 src/tir/ir/data_layout.cc                          | 104 ++++++++++++++++-----
 src/tir/op/op.cc                                   |  11 +++
 tests/python/contrib/test_cmsisnn/test_conv2d.py   |   2 +
 .../python/relay/op/annotation/test_annotation.py  |   2 +-
 tests/python/relay/test_pass_alter_op_layout.py    |  46 +++++++++
 tests/python/unittest/test_te_tensor.py            |   4 +
 .../test_tir_transform_compact_buffer_region.py    |  71 ++++++++++++++
 tests/python/unittest/test_tvmscript_complete.py   |   9 +-
 tests/scripts/task_demo_microtvm.sh                |   7 +-
 31 files changed, 386 insertions(+), 85 deletions(-)