@@ -121,6 +121,7 @@ std::vector<SupportedOp> supported_op_mode = {
121
121
{" DepthToSpace" , V_2020_4, {" CPU" , " GPU" }},
122
122
{" DequantizeLinear" , V_2021_4, {" CPU" , " GPU" }},
123
123
{" DequantizeLinear" , V_2024_4, {" NPU" }},
124
+ {" DynamicQuantizeLinear" , V_2025_2, {" CPU" , " GPU" }},
124
125
{" DynamicQuantizeMatMul" , V_2025_0, {" CPU" , " GPU" }},
125
126
{" Div" , V_2020_4, {" CPU" , " GPU" }},
126
127
{" Dropout" , V_2020_4, {" CPU" , " GPU" }},
@@ -172,6 +173,7 @@ std::vector<SupportedOp> supported_op_mode = {
172
173
{" LSTM" , V_2020_4, {" CPU" , " GPU" }},
173
174
{" MatMul" , V_2020_4, {" CPU" , " GPU" }},
174
175
{" MatMulInteger" , V_2022_1, {" CPU" }},
176
+ {" MatMulInteger" , V_2025_2, {" GPU" }},
175
177
{" MatMulNBits" , V_2024_5, {" CPU" , " GPU" }},
176
178
{" Max" , V_2020_4, {" CPU" , " GPU" }},
177
179
{" MaxPool" , V_2020_4, {" CPU" , " GPU" }},
@@ -191,7 +193,7 @@ std::vector<SupportedOp> supported_op_mode = {
191
193
{" Pad" , V_2020_4, {" CPU" , " GPU" }},
192
194
{" Pow" , V_2020_4, {" CPU" , " GPU" }},
193
195
{" PRelu" , V_2020_4, {" CPU" , " GPU" }},
194
- {" QLinearMatMul" , V_2022_3, {" CPU" }},
196
+ // {"QLinearMatMul", V_2022_3, {"CPU"}},
195
197
{" QuantizeLinear" , V_2021_4, {" CPU" , " GPU" }},
196
198
{" QuickGelu" , V_2025_0, {" CPU" , " GPU" }},
197
199
{" RNN" , V_2023_1, {" CPU" , " GPU" }},
@@ -361,6 +363,7 @@ void DataOps::populate_op_mode_supported() {
361
363
no_dimension_supported_.push_back ({" Clip" , V_2022_1, {" All" }});
362
364
no_dimension_supported_.push_back ({" Div" , V_2020_4, {" All" }});
363
365
no_dimension_supported_.push_back ({" DequantizeLinear" , V_2021_4, {" All" }});
366
+ no_dimension_supported_.push_back ({" DynamicQuantizeLinear" , V_2025_2, {" All" }});
364
367
no_dimension_supported_.push_back ({" Equal" , V_2022_1, {" CPU" }});
365
368
no_dimension_supported_.push_back ({" Equal" , V_2023_0, {" GPU" }});
366
369
no_dimension_supported_.push_back ({" Expand" , V_2023_3, {" CPU" }});
@@ -374,6 +377,7 @@ void DataOps::populate_op_mode_supported() {
374
377
no_dimension_supported_.push_back ({" Loop" , V_2021_4, {" All" }});
375
378
no_dimension_supported_.push_back ({" Max" , V_2024_4, {" All" }});
376
379
no_dimension_supported_.push_back ({" Min" , V_2020_4, {" All" }});
380
+ no_dimension_supported_.push_back ({" MatMulInteger" , V_2025_2, {" All" }});
377
381
no_dimension_supported_.push_back ({" Mul" , V_2020_4, {" All" }});
378
382
no_dimension_supported_.push_back ({" Neg" , V_2023_0, {" CPU" , " GPU" }});
379
383
no_dimension_supported_.push_back ({" Pow" , V_2023_0, {" CPU" , " GPU" }});
0 commit comments