aboutsummaryrefslogtreecommitdiff
path: root/src/core/CL/kernels/CLSobel7x7Kernel.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/CL/kernels/CLSobel7x7Kernel.cpp')
-rw-r--r--src/core/CL/kernels/CLSobel7x7Kernel.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/CL/kernels/CLSobel7x7Kernel.cpp b/src/core/CL/kernels/CLSobel7x7Kernel.cpp
index cd221fc4aa..8c0b6a239f 100644
--- a/src/core/CL/kernels/CLSobel7x7Kernel.cpp
+++ b/src/core/CL/kernels/CLSobel7x7Kernel.cpp
@@ -140,7 +140,7 @@ void CLSobel7x7HorKernel::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));
}
@@ -255,7 +255,7 @@ void CLSobel7x7VertKernel::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));
}