Files
darknet/src/col2im.h
2016-12-12 13:07:34 +05:30

20 lines
400 B
C

#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
#ifdef __cplusplus
extern "C" {
#endif
void col2im_ongpu(float *data_col,
int channels, int height, int width,
int ksize, int stride, int pad, float *data_im);
#ifdef __cplusplus
}
#endif
#endif
#endif