Skip to content

Commit

Permalink
Remove unsupported Op LpPool; GridSample com.microsoft supported only…
Browse files Browse the repository at this point in the history
… in model; Celu is a function Op
  • Loading branch information
sspintel committed Mar 13, 2024
1 parent b9506a9 commit ea4001b
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions onnxruntime/core/providers/openvino/ov_versions/data_ops.cc
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ namespace openvino_ep {
std::set<std::string> ops_supported_only_in_model = {
"Add",
"Cast",
"Celu",
"Concat",
"ConstantOfShape",
"DequantizeLinear",
Expand All @@ -47,6 +48,7 @@ std::set<std::string> ops_supported_only_in_model = {
"EyeLike",
"GatherElements",
"GatherND",
"GridSample",
"Identity",
"LayerNormalization",
"Loop",
Expand All @@ -73,7 +75,8 @@ std::set<std::string> ops_supported_only_in_model = {
std::set<std::string> ops_supported_as_function = {
"LessOrEqual",
"GreaterOrEqual",
"LayerNormalization"};
"LayerNormalization",
"Celu"};

std::vector<SupportedOp> supported_op_mode = {
{"Abs", V_2020_4, {"CPU", "GPU"}},
Expand Down Expand Up @@ -153,7 +156,6 @@ std::vector<SupportedOp> supported_op_mode = {
{"LogSoftMax", V_2022_1, {"CPU", "GPU"}},
{"Loop", V_2021_4, {"CPU", "GPU"}},
{"LpNormalization", V_2023_1, {"CPU", "GPU"}},
{"LpPool", V_2023_1, {"CPU", "GPU"}},
{"LRN", V_2020_4, {"CPU", "GPU"}},
{"LSTM", V_2020_4, {"CPU", "GPU"}},
{"MatMul", V_2020_4, {"CPU", "GPU"}},
Expand Down

0 comments on commit ea4001b

Please sign in to comment.