00001 #ifndef COL2IM_H 00002 #define COL2IM_H 00003 00004 void col2im_cpu(float* data_col, 00005 int channels, int height, int width, 00006 int ksize, int stride, int pad, float* data_im); 00007 00008 #ifdef GPU 00009 void col2im_ongpu(float *data_col, 00010 int channels, int height, int width, 00011 int ksize, int stride, int pad, float *data_im); 00012 #endif 00013 #endif