Compile fix

This commit is contained in:
AlexeyAB
2019-01-06 16:00:00 +03:00
parent c75fbb5f2e
commit c56931dd75

View File

@ -1724,6 +1724,14 @@ void forward_maxpool_layer_avx(float *src, float *dst, int *indexes, int size, i
#else // AVX
int is_avx() {
return 0;
}
int is_fma_avx2() {
return 0;
}
void gemm_nn(int M, int N, int K, float ALPHA,
float *A, int lda,
float *B, int ldb,