aboutsummaryrefslogtreecommitdiff
path: root/src/runtime/CL/functions/CLPermute.cpp
diff options
context:
space:
mode:
authorAnthony Barbier <anthony.barbier@arm.com>2018-05-14 14:43:29 +0100
committerAnthony Barbier <anthony.barbier@arm.com>2018-11-02 16:52:35 +0000
commita8a4d9e943f4874500edc0e41b37fd794c02149f (patch)
tree612af2744240327d2ee8bbebab232500bbabc211 /src/runtime/CL/functions/CLPermute.cpp
parent73d4aef12463ac42fa9e31174675f32535a7edd8 (diff)
downloadComputeLibrary-a8a4d9e943f4874500edc0e41b37fd794c02149f.tar.gz
COMPMID-959: Fixed typo in CLPermute::validate()
Change-Id: I54e58cb0b0cdd90bbb8dc2be4f06b76af88dc26d Reviewed-on: https://eu-gerrit-1.euhpc.arm.com/131054 Tested-by: Jenkins <bsgcomp@arm.com> Reviewed-by: Isabella Gottardi <isabella.gottardi@arm.com>
Diffstat (limited to 'src/runtime/CL/functions/CLPermute.cpp')
-rw-r--r--src/runtime/CL/functions/CLPermute.cpp4
1 files changed, 2 insertions, 2 deletions
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
+}