From 1818e120e30dd0ae6cf256c5b83f02306390615b Mon Sep 17 00:00:00 2001 From: Xiping Yan Date: Fri, 26 Aug 2022 13:17:47 +0800 Subject: [PATCH] Fix macOS build issue. (#12766) After moving cpuFuncTest to cpu_plugin folder, there is more stricter grammar check. ngPrc is declared twice, but for the first declaration, the ngPrc is not used. Signed-off-by: Yan, Xiping Signed-off-by: Yan, Xiping --- .../functional/single_layer_tests/deformable_convolution.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/src/plugins/intel_cpu/tests/functional/single_layer_tests/deformable_convolution.cpp b/src/plugins/intel_cpu/tests/functional/single_layer_tests/deformable_convolution.cpp index 81ddd3447ca..fd06d41a2b1 100644 --- a/src/plugins/intel_cpu/tests/functional/single_layer_tests/deformable_convolution.cpp +++ b/src/plugins/intel_cpu/tests/functional/single_layer_tests/deformable_convolution.cpp @@ -69,7 +69,6 @@ public: bool withBilinearInterpolationPad, withModulation; OffsetType offType; std::tie(withBilinearInterpolationPad, withModulation, offType) = dcSpecificParams; - auto ngPrc = FuncTestUtils::PrecisionUtils::convertIE2nGraphPrc(netPrecision); std::ostringstream result; result << "DefConvTest("; result << std::to_string(obj.index) << ")_";