aboutsummaryrefslogtreecommitdiff
path: root/src/core/CL/kernels/CLSobel5x5Kernel.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/CL/kernels/CLSobel5x5Kernel.cpp')
-rw-r--r--src/core/CL/kernels/CLSobel5x5Kernel.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/CL/kernels/CLSobel5x5Kernel.cpp b/src/core/CL/kernels/CLSobel5x5Kernel.cpp
index 1f4b496c75..f07c1c9098 100644
--- a/src/core/CL/kernels/CLSobel5x5Kernel.cpp
+++ b/src/core/CL/kernels/CLSobel5x5Kernel.cpp
@@ -138,7 +138,7 @@ void CLSobel5x5HorKernel::run(const Window &window, cl::CommandQueue &queue)
add_2D_tensor_argument(idx, _output_y, slice);
}
- enqueue(queue, *this, slice);
+ enqueue(queue, *this, slice, lws_hint());
}
while(window.slide_window_slice_2D(slice));
}
@@ -252,7 +252,7 @@ void CLSobel5x5VertKernel::run(const Window &window, cl::CommandQueue &queue)
_kernel.setArg(idx++, 0 /*dummy*/);
- enqueue(queue, *this, slice);
+ enqueue(queue, *this, slice, lws_hint());
}
while(window.slide_window_slice_2D(slice));
}