From a8a4d9e943f4874500edc0e41b37fd794c02149f Mon Sep 17 00:00:00 2001 From: Anthony Barbier Date: Mon, 14 May 2018 14:43:29 +0100 Subject: COMPMID-959: Fixed typo in CLPermute::validate() Change-Id: I54e58cb0b0cdd90bbb8dc2be4f06b76af88dc26d Reviewed-on: https://eu-gerrit-1.euhpc.arm.com/131054 Tested-by: Jenkins Reviewed-by: Isabella Gottardi --- src/runtime/CL/functions/CLPermute.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/runtime/CL/functions/CLPermute.cpp') diff --git a/src/runtime/CL/functions/CLPermute.cpp b/src/runtime/CL/functions/CLPermute.cpp index 146856cd77..55b76495b3 100644 --- a/src/runtime/CL/functions/CLPermute.cpp +++ b/src/runtime/CL/functions/CLPermute.cpp @@ -39,6 +39,6 @@ void CLPermute::configure(const ICLTensor *input, ICLTensor *output, const Permu Status CLPermute::validate(const ITensorInfo *input, const ITensorInfo *output, const PermutationVector &perm) { - ARM_COMPUTE_RETURN_ERROR_ON(CLPermuteKernel::validate(input, output, perm)); + ARM_COMPUTE_RETURN_ON_ERROR(CLPermuteKernel::validate(input, output, perm)); return Status{}; -} \ No newline at end of file +} -- cgit v1.2.1