mirror of
https://github.com/HuwCampbell/grenade.git
synced 2024-11-26 10:11:37 +03:00
8 lines
261 B
C
8 lines
261 B
C
#include <stdio.h>
|
|
#include <stdint.h>
|
|
|
|
void im2col_cpu(const double* data_im, int dataOffset, const int channels,
|
|
const int height, const int width, const int kernel_h, const int kernel_w,
|
|
const int stride_h, const int stride_w,
|
|
double* data_col);
|