From 4c47bca8fefa654a6c7b043293bb92161492f6e6 Mon Sep 17 00:00:00 2001 From: Ted Themistokleous <107195283+TedThemistokleous@users.noreply.github.com> Date: Tue, 15 Oct 2024 15:21:22 -0400 Subject: [PATCH] [MIGraphX EP] Add additional operators (#22446) * Add in missing operators for llama run * Add simplified layer norm ops ### Description Adding additional supported operators into MIGraphX EP that are supported in MIGraphX ### Motivation and Context Allows for more models to be run through MIGraphX EP --- .../core/providers/migraphx/migraphx_execution_provider.cc | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/onnxruntime/core/providers/migraphx/migraphx_execution_provider.cc b/onnxruntime/core/providers/migraphx/migraphx_execution_provider.cc index 90dfa49c73..6fc729a537 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", + "GroupQueryAttention", "HardSigmoid", "HardSwish", "Identity", @@ -853,6 +854,7 @@ GetUnsupportedNodeIndices(const GraphViewer& graph_viewer, "LSTM", "MatMul", "MatMulInteger", + "MatMulNBits", "Max", "MaxPool", "Mean", @@ -861,6 +863,7 @@ GetUnsupportedNodeIndices(const GraphViewer& graph_viewer, "Mul", "Multinomial", "Neg", + "NegativeLogLikelihoodLoss", "NonMaxSuppression", "NonZero", "Not", @@ -904,8 +907,10 @@ GetUnsupportedNodeIndices(const GraphViewer& graph_viewer, "Shape", "Sigmoid", "Sign", + "SimplifiedLayerNormalization", "Sin", "Sinh", + "SkipSimplifiedLayerNormalization", "Slice", "Softmax", "Softplus",