diff --git a/src/operators/kernel/cl/feed_kernel.cpp b/src/operators/kernel/cl/feed_kernel.cpp index 33ba7d2e17f874da15af4406dea78534d6a34cb0..67a36dbe706830dfcb22894152a5195aee6d111b 100644 --- a/src/operators/kernel/cl/feed_kernel.cpp +++ b/src/operators/kernel/cl/feed_kernel.cpp @@ -59,10 +59,9 @@ void FeedKernel::Compute(const FeedParam ¶m) { CL_CHECK_ERRORS(status); size_t global_work_size[2] = {height, width}; - status = clEnqueueNDRangeKernel(this->cl_helper_.CLCommandQueue(), kernel, 2, NULL, - global_work_size, NULL, 0, NULL, NULL); + status = clEnqueueNDRangeKernel(this->cl_helper_.CLCommandQueue(), kernel, 2, + NULL, global_work_size, NULL, 0, NULL, NULL); CL_CHECK_ERRORS(status); - } template class FeedKernel;