[IE CLDNN] Remove debug code from reference_convolve (#2493)
authorJedrzej Hajduczenia <jedrzej.hajduczenia@intel.com>
Fri, 2 Oct 2020 05:09:39 +0000 (07:09 +0200)
committerGitHub <noreply@github.com>
Fri, 2 Oct 2020 05:09:39 +0000 (08:09 +0300)
inference-engine/thirdparty/clDNN/tests/test_cases/convolution_gpu_test.cpp

index 04ca03f..8618ae4 100644 (file)
@@ -130,8 +130,7 @@ VVVF<OutputT> reference_convolve(VVVVF<InputT> &input, VVVVF<WeightsT> &filter,
                                     weights_val = static_cast<AccT>(filter[f][zf][yf][xf]);
                                 } else if (grouped) {
                                     weights_val = static_cast<AccT>(filter[f - filter_begin][zf][yf][xf]);
-                                }
-                                else {
+                                } else {
                                     weights_val = static_cast<AccT>(filter[0][zf][yf][xf]);
                                 }
 
@@ -139,8 +138,6 @@ VVVF<OutputT> reference_convolve(VVVVF<InputT> &input, VVVVF<WeightsT> &filter,
                                     weights_val = weights_val - static_cast<AccT>(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);
                             }
                         }