Joseph Redmon
2014-12-16 884045091b3a22d4dda3a9d743d076367c840ef7
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;