From 84797636b0ad44c16838df4177cf5a05aa929781 Mon Sep 17 00:00:00 2001 From: Giuseppe Rossini Date: Wed, 22 Aug 2018 12:07:48 +0100 Subject: [COMPMID-1483] Add validate method to CLReshapeLayer Change-Id: I33079e07acad83e0740c87b06546cc0f0f51301c Reviewed-on: https://eu-gerrit-1.euhpc.arm.com/145164 Reviewed-by: Georgios Pinitas Tested-by: Jenkins --- src/runtime/CL/functions/CLReshapeLayer.cpp | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'src/runtime/CL/functions/CLReshapeLayer.cpp') diff --git a/src/runtime/CL/functions/CLReshapeLayer.cpp b/src/runtime/CL/functions/CLReshapeLayer.cpp index 2ce83dceb4..b1ca7a821d 100644 --- a/src/runtime/CL/functions/CLReshapeLayer.cpp +++ b/src/runtime/CL/functions/CLReshapeLayer.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2017 ARM Limited. + * Copyright (c) 2017-2018 ARM Limited. * * SPDX-License-Identifier: MIT * @@ -35,3 +35,8 @@ void CLReshapeLayer::configure(const ICLTensor *input, ICLTensor *output) k->configure(input, output); _kernel = std::move(k); } + +Status CLReshapeLayer::validate(const ITensorInfo *input, const ITensorInfo *output) +{ + return CLReshapeLayerKernel::validate(input, output); +} -- cgit v1.2.1