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:26:12 UTC

[tvm] branch last-successful updated (d65ff65 -> 2c0a7c2)

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.


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

This update removed existing revisions from the reference, leaving the
reference pointing at a previous point in the repository history.

 * -- * -- N   refs/heads/last-successful (2c0a7c2)
            \
             O -- O -- O   (d65ff65)

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

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_link_params.py          | 356 +++++++++++----------
 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 +-
 32 files changed, 264 insertions(+), 563 deletions(-)