You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tvm.apache.org by tq...@apache.org on 2023/03/05 00:20:16 UTC

[tvm] branch unity updated (12f7cabbf0 -> e64fdf8ab1)

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

tqchen pushed a change to branch unity
in repository https://gitbox.apache.org/repos/asf/tvm.git


    from 12f7cabbf0 [Unity][Op] Group normalization (#14194)
     add e64fdf8ab1 [Unity][Op] Argmax and argmin (#14195)

No new revisions were added by this update.

Summary of changes:
 .../tvm/relax/attrs/{statistical.h => search.h}    |  24 +--
 python/tvm/relax/frontend/torch/fx_translator.py   |  28 +++
 python/tvm/relax/op/op_attrs.py                    |   5 +
 python/tvm/relax/op/search.py                      |  54 ++++++
 python/tvm/relax/transform/legalize_ops/search.py  |  20 +++
 python/tvm/script/ir_builder/relax/ir.py           |   4 +
 src/relax/op/tensor/search.cc                      |  77 ++++++++
 src/relax/op/tensor/search.h                       |   8 +
 tests/python/relax/test_frontend_from_fx.py        |  86 +++++++++
 tests/python/relax/test_op_search.py               | 158 +++++++++++++++++
 ...st_transform_legalize_ops_search_statistical.py | 197 +++++++++++++++++++++
 .../relax/test_tvmscript_parser_op_search.py       |  45 +++++
 12 files changed, 694 insertions(+), 12 deletions(-)
 copy include/tvm/relax/attrs/{statistical.h => search.h} (60%)