Skip to content

Commit

Permalink
Update onnx_import.in.cpp: disable for tpl plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
gkrivor committed Aug 5, 2024
1 parent c15149f commit 02d248a
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/frontends/onnx/tests/onnx_import.in.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1232,6 +1232,11 @@ OPENVINO_TEST(${BACKEND_NAME}, onnx_model_reduce_prod) {
}

OPENVINO_TEST(${BACKEND_NAME}, onnx_model_reduce_prod_18) {
// TEMPLATE plugin has an issue with evaluation for reduceprod, CVS-148827
if (std::string("${BACKEND_NAME}") == std::string("INTERPRETER")) {
GTEST_SKIP();
}

auto model = convert_model("reduce_prod_18.onnx");

// input data shape (1, 1, 4, 4)
Expand Down

0 comments on commit 02d248a

Please sign in to comment.