This is an automated email from the ASF dual-hosted git repository.
tqchen pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-tvm.git.
from c9f2e2f [Topi] pass-by-value -> pass-by-const-reference (#5783)
add f677af0 [topi][relay] Add operation gather to relay. (#5716)
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 | 10 +++
python/tvm/relay/op/_transform.py | 1 +
python/tvm/relay/op/op_attrs.py | 4 ++
python/tvm/relay/op/transform.py | 37 ++++++++++
src/relay/op/tensor/transform.cc | 82 ++++++++++++++++++++++
tests/python/relay/test_op_level3.py | 52 ++++++++++++++
topi/include/topi/transform.h | 48 +++++++++++++
topi/python/topi/testing/__init__.py | 1 +
.../testing/{batch_matmul.py => gather_python.py} | 34 +++++----
topi/python/topi/transform.py | 32 +++++++++
topi/src/transform.cc | 4 ++
topi/tests/python/test_topi_transform.py | 38 ++++++++++
14 files changed, 331 insertions(+), 15 deletions(-)
copy topi/python/topi/testing/{batch_matmul.py => gather_python.py} (59%)