You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tvm.apache.org by an...@apache.org on 2020/06/17 03:53:17 UTC

[incubator-tvm] branch master updated (7f37eb4 -> 3e72be5)

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

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


    from 7f37eb4  [RUNTIME][String] Overload string operators (#5806)
     add 3e72be5  [Relay, Topi] [Frontend][TFLite, MXNet] ReverseSequence operator (#5495)

No new revisions were added by this update.

Summary of changes:
 docs/api/python/topi.rst                     |  2 +
 docs/langref/relay_op.rst                    |  1 +
 include/tvm/relay/attrs/transform.h          | 14 +++++
 python/tvm/relay/frontend/mxnet.py           | 16 +++++
 python/tvm/relay/frontend/tflite.py          | 34 ++++++++--
 python/tvm/relay/op/_transform.py            |  1 +
 python/tvm/relay/op/op_attrs.py              |  4 ++
 python/tvm/relay/op/transform.py             | 47 ++++++++++++++
 src/relay/op/tensor/transform.cc             | 93 +++++++++++++++++++++++++++-
 tests/python/frontend/mxnet/test_forward.py  | 34 ++++++++++
 tests/python/frontend/tflite/test_forward.py | 27 ++++++++
 tests/python/relay/test_op_level3.py         | 67 ++++++++++++++++++++
 topi/include/topi/transform.h                | 78 +++++++++++++++--------
 topi/python/topi/transform.py                | 31 ++++++++++
 topi/src/transform.cc                        |  7 ++-
 topi/tests/python/test_topi_transform.py     | 80 ++++++++++++++++++++++++
 16 files changed, 504 insertions(+), 32 deletions(-)