From f202e50a8b89f143f74c393e33e0154817bd3c1d Mon Sep 17 00:00:00 2001 From: Anthony Barbier Date: Thu, 23 Nov 2017 18:02:04 +0000 Subject: 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 Reviewed-by: Georgios Pinitas --- src/core/CL/cl_kernels/canny.cl | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) (limited to 'src/core/CL/cl_kernels/canny.cl') 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) \ -- cgit v1.2.1