From c1f74851939cc2a04229ecd25ae7dbe2c98193ab Mon Sep 17 00:00:00 2001 From: Ted Themistokleous <107195283+TedThemistokleous@users.noreply.github.com> Date: Mon, 21 Oct 2024 23:59:07 -0400 Subject: [PATCH] [MIGraphX EP] Add GroupNormalization and LayerNormalization Support (#22503) Need this to ensure we use GroupNormalization and LayerNormalization operators in MIGraphX --- .../core/providers/migraphx/migraphx_execution_provider.cc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/onnxruntime/core/providers/migraphx/migraphx_execution_provider.cc b/onnxruntime/core/providers/migraphx/migraphx_execution_provider.cc index 3a88ca7598943..e41cd577b0b21 100644 --- a/onnxruntime/core/providers/migraphx/migraphx_execution_provider.cc +++ b/onnxruntime/core/providers/migraphx/migraphx_execution_provider.cc @@ -835,6 +835,7 @@ GetUnsupportedNodeIndices(const GraphViewer& graph_viewer, "GlobalMaxPool", "Greater", "GreaterOrEqual", + "GroupNormalization", "GroupQueryAttention", "HardSigmoid", "HardSwish", @@ -843,6 +844,7 @@ GetUnsupportedNodeIndices(const GraphViewer& graph_viewer, "ImageScaler", "InstanceNormalization", "IsNan", + "LayerNormalization", "LeakyRelu", "Less", "LessOrEqual",