mirror of
https://github.com/pjreddie/darknet.git
synced 2023-08-10 21:13:14 +03:00
CUDA so fast
This commit is contained in:
13
src/col2im.h
Normal file
13
src/col2im.h
Normal file
@ -0,0 +1,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 batch,
|
||||
int channels, int height, int width,
|
||||
int ksize, int stride, int pad, float *data_im);
|
||||
#endif
|
||||
#endif
|
Reference in New Issue
Block a user