darknet/src/im2col.h

16 lines
331 B
C
Raw Normal View History

2015-01-23 03:38:24 +03:00
#ifndef IM2COL_H
#define IM2COL_H
void im2col_cpu(float* data_im,
int channels, int height, int width,
int ksize, int stride, int pad, float* data_col);
#ifdef GPU
2015-02-11 06:41:03 +03:00
void im2col_ongpu(float *im,
2015-01-23 03:38:24 +03:00
int channels, int height, int width,
int ksize, int stride, int pad,float *data_col);
#endif
#endif