From 9168acc328d709a6e4ff2d1abba17c9a01c2a07a Mon Sep 17 00:00:00 2001 From: jasonrandrews Date: Wed, 14 Feb 2018 11:35:53 -0600 Subject: [PATCH] fix warning hit with Android clang version 5.0.300080 (#348) --- .../NEON/kernels/winograd/transforms/output_4x4_3x3_fp32.cpp | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/core/NEON/kernels/winograd/transforms/output_4x4_3x3_fp32.cpp b/src/core/NEON/kernels/winograd/transforms/output_4x4_3x3_fp32.cpp index 483e5c110..5eac33452 100644 --- a/src/core/NEON/kernels/winograd/transforms/output_4x4_3x3_fp32.cpp +++ b/src/core/NEON/kernels/winograd/transforms/output_4x4_3x3_fp32.cpp @@ -41,9 +41,6 @@ int Transform::ops_performed(const Tensor4DShape &shape) return 170 * tile_M * tile_N * shape.n_channels; } -// Instantiate cost methods -template int Transform::ops_performed(const Tensor4DShape&); - /* F(4x4, 3x3) constructs 4x4 output tiles from a 3x3 convolution. Since we use * enough tiles to cover the output space each output tile may contain up to 3 * padded values to the right and bottom columns or rows of the tile, e.g.: -- 2.34.1