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 2021/02/17 04:33:18 UTC

[tvm] branch main updated (e57e644 -> 173f3fc)

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 e57e644  [ROCM] Add Thrust support (#7458)
     add 173f3fc  SparseFillEmptyRows Op (#7442)

No new revisions were added by this update.

Summary of changes:
 python/tvm/relay/frontend/tensorflow.py          |  23 ++++
 python/tvm/relay/op/_transform.py                |  63 ++++++++-
 python/tvm/relay/op/strategy/generic.py          |  29 ++++
 python/tvm/relay/op/transform.py                 |  72 ++++++++++
 python/tvm/topi/__init__.py                      |   1 +
 python/tvm/topi/generic/search.py                |   4 +
 python/tvm/topi/sparse_fill_empty_rows.py        | 109 +++++++++++++++
 src/relay/op/tensor/transform.cc                 |  44 ++++++
 tests/python/frontend/tensorflow/test_forward.py | 103 ++++++++++++++
 tests/python/relay/dyn/test_dynamic_op_level3.py | 168 ++++++++++++++++++++++-
 10 files changed, 612 insertions(+), 4 deletions(-)
 create mode 100644 python/tvm/topi/sparse_fill_empty_rows.py