From 36ab4b91693e877157e1e010f17004f1f560ae0d Mon Sep 17 00:00:00 2001 From: Ted Themistokleous <107195283+TedThemistokleous@users.noreply.github.com> Date: Tue, 15 Oct 2024 10:26:56 -0400 Subject: [PATCH] Add in missing operators for llama run (#70) * Add in missing operators for llama run * Add simplified layer norm ops --- .../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 737372c2a4fb9..5621fdffc0114 100644 --- a/onnxruntime/core/providers/migraphx/migraphx_execution_provider.cc +++ b/onnxruntime/core/providers/migraphx/migraphx_execution_provider.cc @@ -834,6 +834,7 @@ GetUnsupportedNodeIndices(const GraphViewer& graph_viewer, "GlobalMaxPool", "Greater", "GreaterOrEqual", + "GroupQueryAttention", "HardSigmoid", "HardSwish", "Identity", @@ -852,6 +853,7 @@ GetUnsupportedNodeIndices(const GraphViewer& graph_viewer, "LSTM", "MatMul", "MatMulInteger", + "MatMulNBits", "Max", "MaxPool", "Mean", @@ -860,6 +862,7 @@ GetUnsupportedNodeIndices(const GraphViewer& graph_viewer, "Mul", "Multinomial", "Neg", + "NegativeLogLikelihoodLoss", "NonMaxSuppression", "NonZero", "Not", @@ -903,8 +906,10 @@ GetUnsupportedNodeIndices(const GraphViewer& graph_viewer, "Shape", "Sigmoid", "Sign", + "SimplifiedLayerNormalization", "Sin", "Sinh", + "SkipSimplifiedLayerNormalization", "Slice", "Softmax", "SoftmaxCrossEntropyLoss",