From 2d2213920ba5ab95052a557dd20594a6ccb7d562 Mon Sep 17 00:00:00 2001 From: Georgios Pinitas Date: Thu, 3 Sep 2020 15:16:37 +0100 Subject: COMPMID-3154: Deprecate NE/CL LocallyConnectedLayer Signed-off-by: Georgios Pinitas Change-Id: Ia7516fadcf3df072abf9b83aef4d9939212ce082 Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/3918 Tested-by: Arm Jenkins Reviewed-by: Michele Di Giorgio Comments-Addressed: Arm Jenkins --- src/runtime/CL/functions/CLLocallyConnectedLayer.cpp | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src/runtime/CL') diff --git a/src/runtime/CL/functions/CLLocallyConnectedLayer.cpp b/src/runtime/CL/functions/CLLocallyConnectedLayer.cpp index d501985aef..74cb47347f 100644 --- a/src/runtime/CL/functions/CLLocallyConnectedLayer.cpp +++ b/src/runtime/CL/functions/CLLocallyConnectedLayer.cpp @@ -127,10 +127,13 @@ Status CLLocallyConnectedLayer::validate(const ITensorInfo *input, const ITensor return Status{}; } +#pragma GCC diagnostic push +#pragma GCC diagnostic ignored "-Wdeprecated-declarations" void CLLocallyConnectedLayer::configure(const ICLTensor *input, const ICLTensor *weights, const ICLTensor *biases, ICLTensor *output, const PadStrideInfo &conv_info) { configure(CLKernelLibrary::get().get_compile_context(), input, weights, biases, output, conv_info); } +#pragma GCC diagnostic pop void CLLocallyConnectedLayer::configure(const CLCompileContext &compile_context, const ICLTensor *input, const ICLTensor *weights, const ICLTensor *biases, ICLTensor *output, const PadStrideInfo &conv_info) -- cgit v1.2.1