aboutsummaryrefslogtreecommitdiff
path: root/src/core/CL/kernels/CLSobel3x3Kernel.cpp
diff options
context:
space:
mode:
authorMichalis Spyrou <michalis.spyrou@arm.com>2019-07-11 15:00:49 +0100
committerMichalis Spyrou <michalis.spyrou@arm.com>2019-07-12 09:29:37 +0000
commite1651a55c637708347c9adda4a77f1deffacf7d2 (patch)
treead58c09a1a9b141b17ad108799b70727df3c1667 /src/core/CL/kernels/CLSobel3x3Kernel.cpp
parentbffb41e06c1276af00e1605ef934d05fa61f7127 (diff)
downloadComputeLibrary-e1651a55c637708347c9adda4a77f1deffacf7d2.tar.gz
COMPMID-2414 Add add_2D_tensor_argument_if for OpenCL
Change-Id: I8675b4b4face0be9416ae6c7a7023234d50fc0cb Signed-off-by: Michalis Spyrou <michalis.spyrou@arm.com> Reviewed-on: https://review.mlplatform.org/c/1524 Comments-Addressed: Arm Jenkins <bsgcomp@arm.com> Reviewed-by: Michele Di Giorgio <michele.digiorgio@arm.com> Tested-by: Arm Jenkins <bsgcomp@arm.com>
Diffstat (limited to 'src/core/CL/kernels/CLSobel3x3Kernel.cpp')
-rw-r--r--src/core/CL/kernels/CLSobel3x3Kernel.cpp12
1 files changed, 2 insertions, 10 deletions
diff --git a/src/core/CL/kernels/CLSobel3x3Kernel.cpp b/src/core/CL/kernels/CLSobel3x3Kernel.cpp
index 1c2fbb0176..cde754184d 100644
--- a/src/core/CL/kernels/CLSobel3x3Kernel.cpp
+++ b/src/core/CL/kernels/CLSobel3x3Kernel.cpp
@@ -128,16 +128,8 @@ void CLSobel3x3Kernel::run(const Window &window, cl::CommandQueue &queue)
{
unsigned int idx = 0;
add_2D_tensor_argument(idx, _input, slice);
-
- if(_run_sobel_x)
- {
- add_2D_tensor_argument(idx, _output_x, slice);
- }
-
- if(_run_sobel_y)
- {
- add_2D_tensor_argument(idx, _output_y, slice);
- }
+ add_2D_tensor_argument_if((_run_sobel_x), idx, _output_x, slice);
+ add_2D_tensor_argument_if((_run_sobel_y), idx, _output_y, slice);
enqueue(queue, *this, slice, lws_hint());
}