From 9f7cf581b860fb3b186c3b9302a71a36d12148bb Mon Sep 17 00:00:00 2001 From: Ivan Tikhonov Date: Thu, 22 Jul 2021 01:37:22 +0300 Subject: [PATCH] DeformableConv: Decrease input_shape and kernal in CPU functional tests (#6746) --- .../single_layer_tests/deformable_convolution.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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);