From 1ad6eb135959028bcc0346206c6a8b5cf17d16ee Mon Sep 17 00:00:00 2001 From: Ted Themistokleous <107195283+TedThemistokleous@users.noreply.github.com> Date: Wed, 13 Dec 2023 03:25:56 -0500 Subject: [PATCH] Add DynamicQuantizeLinear as supported OP (#18798) Supported added in MIGraphX. should be in operator list ### Description Simple change to add support to EP for DynamicQuantizeLinear ### Motivation and Context Changes added in MIGraphX. Should also be available in the EP to run models that are int8 quantized. Currently we fail and fallback ops to ROCm->CPU EPs Co-authored-by: Ted Themistokleous --- .../core/providers/migraphx/migraphx_execution_provider.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/onnxruntime/core/providers/migraphx/migraphx_execution_provider.cc b/onnxruntime/core/providers/migraphx/migraphx_execution_provider.cc index d1b3f19100942..8bfa66710e2fc 100644 --- a/onnxruntime/core/providers/migraphx/migraphx_execution_provider.cc +++ b/onnxruntime/core/providers/migraphx/migraphx_execution_provider.cc @@ -872,6 +872,7 @@ GetUnsupportedNodeIndices(const GraphViewer& graph_viewer, "QLinearConv", "QLinearMatMul", "QuantizeLinear", + "DynamicQuantizeLinear", "RandomNormal", "RandomNormalLike", "RandomUniform",