1
0
mirror of https://github.com/opencv/opencv.git synced 2026-07-29 23:33:05 +04:00

moved BLAS/LAPACK detection scripts from opencv_contrib/dnn to the main repository (#7918)

* moved BLAS/LAPACK detection scripts from opencv_contrib/dnn to the main repository.

* trying to fix the bug with undefined symbols sgesdd_ and dgesdd_

* removed extra whitespaces; disabled LAPACK on IOS
This commit is contained in:
Vadim Pisarevsky
2016-12-22 22:57:44 +03:00
committed by GitHub
parent ce06fbdf77
commit ad74fdd7cc
8 changed files with 444 additions and 44 deletions
+1 -9
View File
@@ -46,15 +46,7 @@
#ifdef HAVE_LAPACK
#ifdef HAVE_LAPACK_MKL
#include <mkl_cblas.h>
#include <mkl_lapack.h>
#endif
#ifdef HAVE_LAPACK_GENERIC
#include <lapacke.h>
#include <cblas.h>
#endif
#include "opencv_lapack.h"
#include <cmath>
#include <algorithm>