You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tvm.apache.org by zh...@apache.org on 2020/09/08 16:48:10 UTC

[incubator-tvm] branch master updated (718a9a7 -> eee413f)

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

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


    from 718a9a7  Remove comparison of unsigned expression < 0 warning (#6319)
     add eee413f  Dynamic Strided Slice (#6316)

No new revisions were added by this update.

Summary of changes:
 python/tvm/relay/frontend/keras.py                 |   4 +-
 python/tvm/relay/frontend/mxnet.py                 |  16 ++-
 python/tvm/relay/frontend/onnx.py                  |   8 +-
 python/tvm/relay/frontend/pytorch.py               |  18 +--
 python/tvm/relay/op/_tensor_grad.py                |   6 +-
 python/tvm/relay/op/_transform.py                  |  54 ++++-----
 python/tvm/relay/op/dyn/_transform.py              |  51 +++++++++
 python/tvm/relay/op/transform.py                   |  19 ++--
 python/tvm/topi/cuda/conv2d_alter_op.py            |   4 +-
 python/tvm/topi/x86/conv2d_alter_op.py             |   4 +-
 src/relay/op/dyn/tensor/transform.cc               | 113 +++++++++++++++++++
 src/relay/op/make_op.h                             |   3 +-
 src/relay/op/tensor/transform.cc                   | 121 +++++++++------------
 .../transforms/combine_parallel_batch_matmul.cc    |  12 +-
 src/relay/transforms/combine_parallel_conv2d.cc    |  17 +--
 src/relay/transforms/combine_parallel_dense.cc     |  12 +-
 src/relay/transforms/dynamic_to_static.cc          |  16 +++
 src/relay/transforms/pass_util.h                   |   1 +
 tests/python/relay/dyn/test_dynamic_op_level10.py  |  19 ++--
 tests/python/relay/dyn/test_dynamic_op_level2.py   |  23 ++--
 tests/python/relay/dyn/test_dynamic_op_level3.py   |  15 ++-
 tests/python/relay/dyn/test_dynamic_op_level4.py   |  95 ++++++++++++++++
 tests/python/relay/dyn/test_dynamic_op_level5.py   |   3 +-
 tests/python/relay/dyn/test_dynamic_op_level6.py   |   4 +-
 tests/python/relay/test_op_level4.py               |  68 ++++++++++--
 tests/python/relay/test_pass_alter_op_layout.py    |  12 +-
 .../test_pass_combine_parallel_batch_matmul.py     |  36 +++---
 .../relay/test_pass_combine_parallel_conv2d.py     |  54 ++++-----
 .../relay/test_pass_combine_parallel_dense.py      |  36 +++---
 tests/python/relay/test_pass_dynamic_to_static.py  |  64 +++++++++++
 30 files changed, 634 insertions(+), 274 deletions(-)
 create mode 100644 tests/python/relay/dyn/test_dynamic_op_level4.py