diff --git a/inference-engine/tests/functional/plugin/cpu/shared_tests_instances/single_layer_tests/deformable_convolution.cpp b/inference-engine/tests/functional/plugin/cpu/shared_tests_instances/single_layer_tests/deformable_convolution.cpp index 437d8737d65..9e9e7796295 100644 --- a/inference-engine/tests/functional/plugin/cpu/shared_tests_instances/single_layer_tests/deformable_convolution.cpp +++ b/inference-engine/tests/functional/plugin/cpu/shared_tests_instances/single_layer_tests/deformable_convolution.cpp @@ -22,8 +22,8 @@ const std::vector groups = {1}; const std::vector defor_groups = {2}; const std::vector numOutChannels = {1, 5}; const std::vector multiple_defor_groups = {4}; -const std::vector> deform_vals = {{1, 200, 220, 220}}; -const std::vector> kernel = {{64, 16, 5, 5}}; +const std::vector> deform_vals = {{1, 72, 64, 64}}; +const std::vector> kernel = {{16, 16, 3, 3}}; const std::vector with_bilinear_interpolation_pad = { false, true }; const std::vector with_modulated_scalar = { false, true }; @@ -92,7 +92,7 @@ INSTANTIATE_TEST_SUITE_P( ::testing::Values(InferenceEngine::Precision::UNSPECIFIED), ::testing::Values(InferenceEngine::Layout::ANY), ::testing::Values(InferenceEngine::Layout::ANY), - ::testing::Values(std::vector({1, 16, 224, 224})), + ::testing::Values(std::vector({1, 16, 66, 66})), ::testing::Values(CommonTestUtils::DEVICE_CPU)), DeformableConvolutionLayerTest::getTestCaseName);