From 149fdf3cad6b42ed302ebe2b0d614a36b9b4d81c Mon Sep 17 00:00:00 2001 From: Giorgio Arena Date: Wed, 4 Jul 2018 17:03:33 +0100 Subject: COMPMID-1337 Implementing Winograd Convolution Layer 1x3 and 3x1 kernels on OpenCL NHWC Change-Id: Ia07e0dfcbcd07366c4bcb956e298369fb12a0369 Reviewed-on: https://eu-gerrit-1.euhpc.arm.com/138759 Tested-by: Jenkins Reviewed-by: Gian Marco Iodice --- tests/validation/reference/Winograd.cpp | 14 -------------- 1 file changed, 14 deletions(-) (limited to 'tests/validation/reference/Winograd.cpp') diff --git a/tests/validation/reference/Winograd.cpp b/tests/validation/reference/Winograd.cpp index 026b30031c..132d252383 100644 --- a/tests/validation/reference/Winograd.cpp +++ b/tests/validation/reference/Winograd.cpp @@ -193,20 +193,6 @@ void initialize_matrix_transform(SimpleTensor &src, const Size2D &output_tile } } // namespace -template -void print_tile(SimpleTensor &in) -{ - for(int y = 0; y < in.shape()[1]; y++) - { - for(int x = 0; x < in.shape()[0]; x++) - { - std::cout << in[x + y * in.shape()[0]] << " "; - } - - std::cout << std::endl; - } -} - template SimpleTensor winograd_input_transform(const SimpleTensor &in, const TensorShape &output_shape, const WinogradInfo &winograd_info) { -- cgit v1.2.1