From 2b0f3435d2d61e01d799d588e4d8fa5294de6ae7 Mon Sep 17 00:00:00 2001 From: Ted Themistokleous <107195283+TedThemistokleous@users.noreply.github.com> Date: Tue, 12 Nov 2024 14:04:15 -0500 Subject: [PATCH] [MIGraphX EP] Add support for Gelu, BiasGelu, FastGelu operators (#22808) ### Description Adds support for different flavours of gelu already supported in MIGraphX --- .../core/providers/migraphx/migraphx_execution_provider.cc | 3 +++ 1 file changed, 3 insertions(+) diff --git a/onnxruntime/core/providers/migraphx/migraphx_execution_provider.cc b/onnxruntime/core/providers/migraphx/migraphx_execution_provider.cc index 3134e80f30..9017b36a0f 100644 --- a/onnxruntime/core/providers/migraphx/migraphx_execution_provider.cc +++ b/onnxruntime/core/providers/migraphx/migraphx_execution_provider.cc @@ -802,6 +802,7 @@ GetUnsupportedNodeIndices(const GraphViewer& graph_viewer, "ATen", "AveragePool", "BatchNormalization", + "BiasGelu", "Cast", "Ceil", "Celu", @@ -826,12 +827,14 @@ GetUnsupportedNodeIndices(const GraphViewer& graph_viewer, "Exp", "Expand", "EyeLike", + "FastGelu", "Flatten", "Floor", "GRU", "Gather", "GatherElements", "GatherND", + "Gelu", "Gemm", "GlobalAveragePool", "GlobalMaxPool",