Compiles for OpenCV 3.1

This commit is contained in:
Anup
2016-12-12 13:07:34 +05:30
parent f563db5624
commit f13954ac4c
29 changed files with 321 additions and 85 deletions

View File

@@ -19,6 +19,9 @@ void gemm_cpu(int TA, int TB, int M, int N, int K, float ALPHA,
float *C, int ldc);
#ifdef GPU
#ifndef __cplusplus
extern "C" {
#endif
void gemm_ongpu(int TA, int TB, int M, int N, int K, float ALPHA,
float *A_gpu, int lda,
float *B_gpu, int ldb,
@@ -30,5 +33,8 @@ void gemm_gpu(int TA, int TB, int M, int N, int K, float ALPHA,
float *B, int ldb,
float BETA,
float *C, int ldc);
#ifndef __cplusplus
}
#endif
#endif
#endif