From 5365bfe0a789c5e93d481eb9735e65b60a22cfea Mon Sep 17 00:00:00 2001 From: Sungeun Kim Date: Wed, 15 Nov 2023 16:54:22 +0900 Subject: [PATCH] [GPU] remove setting threshold manually for dynamic 1d conv (#21028) --- .../functional/single_layer_tests/dynamic/convolution.cpp | 7 ------- 1 file changed, 7 deletions(-) diff --git a/src/plugins/intel_gpu/tests/functional/single_layer_tests/dynamic/convolution.cpp b/src/plugins/intel_gpu/tests/functional/single_layer_tests/dynamic/convolution.cpp index cf9ae70ee7f..c957a35d0e2 100644 --- a/src/plugins/intel_gpu/tests/functional/single_layer_tests/dynamic/convolution.cpp +++ b/src/plugins/intel_gpu/tests/functional/single_layer_tests/dynamic/convolution.cpp @@ -88,13 +88,6 @@ protected: size_t convOutChannels; std::tie(kernel, stride, padBegin, padEnd, dilation, convOutChannels, padType) = convParams; - // WA: check data when input shape is dynamic and pad is exist. - // If 1d conv, 1d pad should be applied to y axis. But there was a bug what it applied to x axis. - if (inputShape.first.is_dynamic() && padBegin.size() == 1 && padBegin[0] == 1 && padEnd.size() == 1 && padEnd[0] == 1) { - abs_threshold = 9; - rel_threshold = 0.002; - } - ov::ParameterVector inputParams; for (auto&& shape : inputDynamicShapes) inputParams.push_back(std::make_shared(inType, shape));