aboutsummaryrefslogtreecommitdiff
path: root/src/core/CL/cl_kernels/canny.cl
diff options
context:
space:
mode:
authorAnthony Barbier <anthony.barbier@arm.com>2017-11-23 18:02:04 +0000
committerAnthony Barbier <anthony.barbier@arm.com>2018-11-02 16:41:04 +0000
commitf202e50a8b89f143f74c393e33e0154817bd3c1d (patch)
treee9653958a6e343c1d7610840b66b9391d3fcf75b /src/core/CL/cl_kernels/canny.cl
parentdbfb31cdee063ec61e0ab1087f99f235c12d2e7e (diff)
downloadComputeLibrary-f202e50a8b89f143f74c393e33e0154817bd3c1d.tar.gz
COMPMID-556 Improved indentation and error handling in format_doxygen.py
Change-Id: I6f51ffe6c324d9da500716b52c97c344f2a2a164 Reviewed-on: https://eu-gerrit-1.euhpc.arm.com/110486 Tested-by: BSG Visual Compute Jenkins server to access repositories on http://mpd-gerrit.cambridge.arm.com <bsgcomp@arm.com> Reviewed-by: Georgios Pinitas <georgios.pinitas@arm.com>
Diffstat (limited to 'src/core/CL/cl_kernels/canny.cl')
-rw-r--r--src/core/CL/cl_kernels/canny.cl20
1 files changed, 10 insertions, 10 deletions
diff --git a/src/core/CL/cl_kernels/canny.cl b/src/core/CL/cl_kernels/canny.cl
index ec6719213c..166d681755 100644
--- a/src/core/CL/cl_kernels/canny.cl
+++ b/src/core/CL/cl_kernels/canny.cl
@@ -229,16 +229,16 @@ __kernel void suppress_non_maximum(
#define hysteresis_local_stack_L2 16 // The size of level 2 stack, adjust this can impact the match rate with VX implementation
/** Check whether pixel is valid
-*
-* Skip the pixel if the early_test fails.
-* Otherwise, it tries to add the pixel coordinate to the stack, and proceed to popping the stack instead if the stack is full
-*
-* @param[in] early_test Boolean condition based on the minv check and visited buffer check
-* @param[in] x_pos X-coordinate of pixel that is going to be recorded, has to be within the boundary
-* @param[in] y_pos Y-coordinate of pixel that is going to be recorded, has to be within the boundary
-* @param[in] x_cur X-coordinate of current central pixel
-* @param[in] y_cur Y-coordinate of current central pixel
-*/
+ *
+ * Skip the pixel if the early_test fails.
+ * Otherwise, it tries to add the pixel coordinate to the stack, and proceed to popping the stack instead if the stack is full
+ *
+ * @param[in] early_test Boolean condition based on the minv check and visited buffer check
+ * @param[in] x_pos X-coordinate of pixel that is going to be recorded, has to be within the boundary
+ * @param[in] y_pos Y-coordinate of pixel that is going to be recorded, has to be within the boundary
+ * @param[in] x_cur X-coordinate of current central pixel
+ * @param[in] y_cur Y-coordinate of current central pixel
+ */
#define check_pixel(early_test, x_pos, y_pos, x_cur, y_cur) \
{ \
if(!early_test) \