You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tvm.apache.org by ma...@apache.org on 2022/06/01 20:13:49 UTC

[tvm] branch main updated (a1d95ec1ea -> e84f163f57)

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

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


    from a1d95ec1ea [ci] Add conditionals for non-Python tests (#11438)
     add e84f163f57 [TE] Optimized version of concatenation layer (#11341)

No new revisions were added by this update.

Summary of changes:
 python/tvm/relay/op/_transform.py                  |   7 +-
 python/tvm/relay/op/strategy/cuda.py               |  14 ++-
 python/tvm/relay/op/strategy/generic.py            |  21 ++++
 python/tvm/relay/op/strategy/x86.py                |  40 ++++++--
 python/tvm/topi/x86/__init__.py                    |   1 +
 python/tvm/topi/x86/concat.py                      | 109 +++++++++++++++++++++
 python/tvm/topi/x86/injective.py                   |  42 ++++++--
 src/relay/op/tensor/transform.cc                   |   1 -
 src/te/schedule/schedule_dataflow_rewrite.cc       |  30 +++++-
 tests/python/relay/test_op_level1.py               |  97 ++++++++++++++++++
 .../unittest/test_micro_model_library_format.py    |  27 +++--
 11 files changed, 359 insertions(+), 30 deletions(-)
 create mode 100644 python/tvm/topi/x86/concat.py