src/im2col.c
@@ -75,7 +75,6 @@ int channels, int height, int width, int ksize, int stride, int pad, cl_mem data_col) { cl_setup(); int height_col = (height - ksize) / stride + 1; int width_col = (width - ksize) / stride + 1; @@ -113,7 +112,6 @@ int channels, int height, int width, int ksize, int stride, int pad, float *data_col) { cl_setup(); cl_context context = cl.context; cl_command_queue queue = cl.queue;