AlexeyAB
2017-01-15 e83d8e56d56978e5c2e571b8b4bf05b90a851ce0
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef COL2IM_H
#define COL2IM_H
 
void col2im_cpu(float* data_col,
        int channels, int height, int width,
        int ksize, int stride, int pad, float* data_im);
 
#ifdef GPU
void col2im_ongpu(float *data_col,
        int channels, int height, int width,
        int ksize, int stride, int pad, float *data_im);
#endif
#endif