Joseph Redmon
2014-12-08 cb1f33c6ae840e8dc0f43518daf76e6ed01034f0
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;