aboutsummaryrefslogtreecommitdiff
path: root/src/core/CL/kernels/CLSobel3x3Kernel.cpp
diff options
context:
space:
mode:
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());
}