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/06/01 22:05:43 UTC

[tvm] branch last-successful updated (a1d95ec1ea -> a329df4028)

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 a1d95ec1ea [ci] Add conditionals for non-Python tests (#11438)
     add e84f163f57 [TE] Optimized version of concatenation layer (#11341)
     add a329df4028 [COMMUNITY] driazati -> Committer (#11525)

No new revisions were added by this update.

Summary of changes:
 CONTRIBUTORS.md                                    |   1 +
 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 +++--
 12 files changed, 360 insertions(+), 30 deletions(-)
 create mode 100644 python/tvm/topi/x86/concat.py