From 8bc745dfd133f46e68edad511e2933a590602a24 Mon Sep 17 00:00:00 2001 From: Georgios Pinitas Date: Wed, 18 Jul 2018 19:51:24 +0100 Subject: COMPMID-1124: Validate CLLSTM -Enables cell-to-input weights when !cifg and peephole -Makes projection bias conditional Change-Id: Iee866db9f5d8479c2dfd95d74a2d42492bf07a8d Reviewed-on: https://eu-gerrit-1.euhpc.arm.com/140543 Tested-by: Jenkins Reviewed-by: Les Bell Reviewed-by: Anthony Barbier --- src/runtime/CL/functions/CLCopy.cpp | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'src/runtime/CL/functions/CLCopy.cpp') diff --git a/src/runtime/CL/functions/CLCopy.cpp b/src/runtime/CL/functions/CLCopy.cpp index 3442e3781f..d1b7926812 100644 --- a/src/runtime/CL/functions/CLCopy.cpp +++ b/src/runtime/CL/functions/CLCopy.cpp @@ -41,3 +41,8 @@ void CLCopy::configure(ICLTensor *input, ICLTensor *output) k->configure(input, output); _kernel = std::move(k); } + +Status CLCopy::validate(const arm_compute::ITensorInfo *input, const arm_compute::ITensorInfo *output) +{ + return CLCopyKernel::validate(input, output); +} -- cgit v1.2.1