From d18073260bc742d7bf14d262d6919a1b660e2b61 Mon Sep 17 00:00:00 2001 From: Jedrzej Hajduczenia Date: Fri, 2 Oct 2020 07:09:39 +0200 Subject: [PATCH] [IE CLDNN] Remove debug code from reference_convolve (#2493) --- .../thirdparty/clDNN/tests/test_cases/convolution_gpu_test.cpp | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/inference-engine/thirdparty/clDNN/tests/test_cases/convolution_gpu_test.cpp b/inference-engine/thirdparty/clDNN/tests/test_cases/convolution_gpu_test.cpp index 04ca03f..8618ae4 100644 --- a/inference-engine/thirdparty/clDNN/tests/test_cases/convolution_gpu_test.cpp +++ b/inference-engine/thirdparty/clDNN/tests/test_cases/convolution_gpu_test.cpp @@ -130,8 +130,7 @@ VVVF reference_convolve(VVVVF &input, VVVVF &filter, weights_val = static_cast(filter[f][zf][yf][xf]); } else if (grouped) { weights_val = static_cast(filter[f - filter_begin][zf][yf][xf]); - } - else { + } else { weights_val = static_cast(filter[0][zf][yf][xf]); } @@ -139,8 +138,6 @@ VVVF reference_convolve(VVVVF &input, VVVVF &filter, weights_val = weights_val - static_cast(weights_zp); } - //std::cout << std::endl << "f=" << f << ", z=" << z << ", y=" << y << ", x=" << x << ", zf=" << zf << ", yf=" << yf << ", xf=" << xf << ": " << (int)input_val << " * " << (int)weights_val; - values.push_back(input_val * weights_val); } } -- 2.7.4