mirror of
https://github.com/pjreddie/darknet.git
synced 2023-08-10 21:13:14 +03:00
11 lines
549 B
C
11 lines
549 B
C
|
void gemm(int TA, int TB, int M, int N, int K, double ALPHA,
|
||
|
double *A, int lda,
|
||
|
double *B, int ldb,
|
||
|
double BETA,
|
||
|
double *C, int ldc);
|
||
|
void im2row(double *image, int h, int w, int c, int size, int stride, double *matrix);
|
||
|
void im2col(double *image, int h, int w, int c, int size, int stride, double *matrix);
|
||
|
void im2col_cpu(double* data_im, const int channels,
|
||
|
const int height, const int width, const int ksize, const int stride,
|
||
|
double* data_col);
|