aboutsummaryrefslogtreecommitdiff
path: root/src/core/CPP/kernels
diff options
context:
space:
mode:
authorPablo Tello <pablo.tello@arm.com>2018-01-23 10:03:27 +0000
committerAnthony Barbier <anthony.barbier@arm.com>2018-11-02 16:43:42 +0000
commit6c6e77afc0059e4c5a59d97215acccdedf473a7f (patch)
tree59b3c6d21de1c7ad64904175703647ba227df27d /src/core/CPP/kernels
parent64c95a0d7fccb114ce56c9890bbcaf2d7da65668 (diff)
downloadComputeLibrary-6c6e77afc0059e4c5a59d97215acccdedf473a7f.tar.gz
COMPMID-784: Doxygen fixes
Change-Id: I35f429fbf08dece7c759242c37e0a68b0851ce49 Reviewed-on: https://eu-gerrit-1.euhpc.arm.com/117231 Reviewed-by: Anthony Barbier <anthony.barbier@arm.com> Tested-by: Jenkins <bsgcomp@arm.com>
Diffstat (limited to 'src/core/CPP/kernels')
-rw-r--r--src/core/CPP/kernels/CPPPermuteKernel.cpp12
1 files changed, 4 insertions, 8 deletions
diff --git a/src/core/CPP/kernels/CPPPermuteKernel.cpp b/src/core/CPP/kernels/CPPPermuteKernel.cpp
index c7bae870d1..298c700809 100644
--- a/src/core/CPP/kernels/CPPPermuteKernel.cpp
+++ b/src/core/CPP/kernels/CPPPermuteKernel.cpp
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2017, 2018 ARM Limited.
+ * Copyright (c) 2017-2018 ARM Limited.
*
* SPDX-License-Identifier: MIT
*
@@ -76,17 +76,13 @@ inline void permute_strides(Dimensions<T> &dimensions, const PermutationVector &
} // namespace
-
-
-
template <typename T>
void CPPPermuteKernel::run_permute(const Window &window)
{
-
- Strides strides = _output->info()->strides_in_bytes();
+ Strides strides = _output->info()->strides_in_bytes();
Strides perm_strides = strides;
- permute_strides(perm_strides,_perm);
- const int output_stride_w = strides[3];
+ permute_strides(perm_strides, _perm);
+ const int output_stride_w = strides[3];
Window window_out(window);
const Window::Dimension zero_window = Window::Dimension(0, 0, 0);
for(size_t d = 0; d <= _perm.num_dimensions(); ++d)