Skip to content

Commit

Permalink
disable Conv1d test on NGRAPH/MYRIAD
Browse files Browse the repository at this point in the history
  • Loading branch information
sl-sergei committed Nov 17, 2020
1 parent 025a964 commit 3cdf926
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions modules/dnn/test/test_onnx_importer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -685,6 +685,10 @@ TEST_P(Test_ONNX_layers, Conv1d_variable_weight)

TEST_P(Test_ONNX_layers, Conv1d_variable_weight_bias)
{
if (backend == DNN_BACKEND_INFERENCE_ENGINE_NGRAPH)
{
if (target == DNN_TARGET_MYRIAD) applyTestTag(CV_TEST_TAG_DNN_SKIP_IE_MYRIAD, CV_TEST_TAG_DNN_SKIP_IE_NGRAPH);
}
String basename = "conv1d_variable_wb";
Net net = readNetFromONNX(_tf("models/" + basename + ".onnx"));
ASSERT_FALSE(net.empty());
Expand Down

0 comments on commit 3cdf926

Please sign in to comment.