This is an automated email from the ASF dual-hosted git repository.
tlopex pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/tvm.git
from 8327a8cb9f [Relax][ONNX] Update ReduceL1 to opset 18 (#18072)
add a1f5a29eed [Relax] Support InstanceNorm & [TOPI] Bugfix of
InstanceNorm (#18039)
No new revisions were added by this update.
Summary of changes:
include/tvm/relax/attrs/nn.h | 18 ++++
include/tvm/topi/nn/instance_norm.h | 87 +++++++++++++++++-
.../frontend/torch/exported_program_translator.py | 24 +++++
python/tvm/relax/frontend/torch/fx_translator.py | 33 +++++++
python/tvm/relax/op/nn/__init__.py | 1 +
python/tvm/relax/op/nn/nn.py | 55 +++++++++++
python/tvm/relax/op/op_attrs.py | 5 +
python/tvm/relax/transform/legalize_ops/nn.py | 13 +++
python/tvm/topi/nn/instance_norm.py | 4 +-
src/relax/op/nn/nn.cc | 101 ++++++++++++++++++++-
src/relax/op/nn/nn.h | 4 +
src/topi/nn.cc | 4 +-
.../relax/test_frontend_from_exported_program.py | 45 +++++++++
tests/python/relax/test_frontend_from_fx.py | 47 ++++++++++
14 files changed, 433 insertions(+), 8 deletions(-)