Commit ec3c68c8 authored by Ilya Lavrenov's avatar Ilya Lavrenov

fix

parent bd5e4c6c
......@@ -474,7 +474,7 @@ __kernel void KF(__global const uchar * srcptr1, int srcstep1, int srcoffset1,
int rows, int cols EXTRA_PARAMS )
{
int x = get_global_id(0);
int y0 = get_global_id(1);
int y0 = get_global_id(1) * rowsPerWI;
if (x < cols)
{
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment