Skip to content

Commit 4c47bca

Browse files
[MIGraphX EP] Add additional operators (#22446)
* Add in missing operators for llama run * Add simplified layer norm ops ### Description <!-- Describe your changes. --> Adding additional supported operators into MIGraphX EP that are supported in MIGraphX ### Motivation and Context <!-- - Why is this change required? What problem does it solve? - If it fixes an open issue, please link to the issue here. --> Allows for more models to be run through MIGraphX EP
1 parent c5a0fb1 commit 4c47bca

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

onnxruntime/core/providers/migraphx/migraphx_execution_provider.cc

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -835,6 +835,7 @@ GetUnsupportedNodeIndices(const GraphViewer& graph_viewer,
835835
"GlobalMaxPool",
836836
"Greater",
837837
"GreaterOrEqual",
838+
"GroupQueryAttention",
838839
"HardSigmoid",
839840
"HardSwish",
840841
"Identity",
@@ -853,6 +854,7 @@ GetUnsupportedNodeIndices(const GraphViewer& graph_viewer,
853854
"LSTM",
854855
"MatMul",
855856
"MatMulInteger",
857+
"MatMulNBits",
856858
"Max",
857859
"MaxPool",
858860
"Mean",
@@ -861,6 +863,7 @@ GetUnsupportedNodeIndices(const GraphViewer& graph_viewer,
861863
"Mul",
862864
"Multinomial",
863865
"Neg",
866+
"NegativeLogLikelihoodLoss",
864867
"NonMaxSuppression",
865868
"NonZero",
866869
"Not",
@@ -904,8 +907,10 @@ GetUnsupportedNodeIndices(const GraphViewer& graph_viewer,
904907
"Shape",
905908
"Sigmoid",
906909
"Sign",
910+
"SimplifiedLayerNormalization",
907911
"Sin",
908912
"Sinh",
913+
"SkipSimplifiedLayerNormalization",
909914
"Slice",
910915
"Softmax",
911916
"Softplus",

0 commit comments

Comments
 (0)