Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
D
dlib
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
钟尚武
dlib
Commits
4628929b
Commit
4628929b
authored
Oct 08, 2013
by
Davis King
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed the BLAS and LAPACK bindings so they work with the 64bit version of the Intel MKL
when used on Windows.
parent
df06baa9
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
80 additions
and
74 deletions
+80
-74
fortran_id.h
dlib/matrix/lapack/fortran_id.h
+3
-0
matrix_blas_bindings.h
dlib/matrix/matrix_blas_bindings.h
+77
-74
No files found.
dlib/matrix/lapack/fortran_id.h
View file @
4628929b
...
...
@@ -46,6 +46,9 @@ namespace dlib
#if defined(__alpha__) || defined(__sparc64__) || defined(__x86_64__) || defined(__ia64__)
typedef
int
integer
;
typedef
unsigned
int
uinteger
;
#elif defined(_M_X64) // If we are building on windows in Win64 mode
typedef
long
long
int
integer
;
typedef
unsigned
long
long
int
uinteger
;
#else
typedef
long
int
integer
;
typedef
unsigned
long
int
uinteger
;
...
...
dlib/matrix/matrix_blas_bindings.h
View file @
4628929b
...
...
@@ -10,6 +10,7 @@
#include "matrix_assign.h"
#include "matrix_conj_trans.h"
#include "cblas_constants.h"
#include "lapack\fortran_id.h"
//#include <iostream>
//using namespace std;
...
...
@@ -44,94 +45,96 @@ namespace dlib
#define DLIB_TEST_BLAS_BINDING_SCAL
#endif
using
dlib
::
lapack
::
integer
;
extern
"C"
{
// Here we declare the prototypes for the CBLAS calls used by the BLAS bindings below
void
cblas_saxpy
(
const
int
N
,
const
float
alpha
,
const
float
*
X
,
const
int
incX
,
float
*
Y
,
const
int
incY
);
void
cblas_daxpy
(
const
int
N
,
const
double
alpha
,
const
double
*
X
,
const
int
incX
,
double
*
Y
,
const
int
incY
);
void
cblas_caxpy
(
const
int
N
,
const
void
*
alpha
,
const
void
*
X
,
const
int
incX
,
void
*
Y
,
const
int
incY
);
void
cblas_zaxpy
(
const
int
N
,
const
void
*
alpha
,
const
void
*
X
,
const
int
incX
,
void
*
Y
,
const
int
incY
);
void
cblas_saxpy
(
const
int
eger
N
,
const
float
alpha
,
const
float
*
X
,
const
int
eger
incX
,
float
*
Y
,
const
integer
incY
);
void
cblas_daxpy
(
const
int
eger
N
,
const
double
alpha
,
const
double
*
X
,
const
int
eger
incX
,
double
*
Y
,
const
integer
incY
);
void
cblas_caxpy
(
const
int
eger
N
,
const
void
*
alpha
,
const
void
*
X
,
const
int
eger
incX
,
void
*
Y
,
const
integer
incY
);
void
cblas_zaxpy
(
const
int
eger
N
,
const
void
*
alpha
,
const
void
*
X
,
const
int
eger
incX
,
void
*
Y
,
const
integer
incY
);
void
cblas_sscal
(
const
int
N
,
const
float
alpha
,
float
*
X
,
const
int
incX
);
void
cblas_dscal
(
const
int
N
,
const
double
alpha
,
double
*
X
,
const
int
incX
);
void
cblas_cscal
(
const
int
N
,
const
void
*
alpha
,
void
*
X
,
const
int
incX
);
void
cblas_zscal
(
const
int
N
,
const
void
*
alpha
,
void
*
X
,
const
int
incX
);
void
cblas_sscal
(
const
int
eger
N
,
const
float
alpha
,
float
*
X
,
const
integer
incX
);
void
cblas_dscal
(
const
int
eger
N
,
const
double
alpha
,
double
*
X
,
const
integer
incX
);
void
cblas_cscal
(
const
int
eger
N
,
const
void
*
alpha
,
void
*
X
,
const
integer
incX
);
void
cblas_zscal
(
const
int
eger
N
,
const
void
*
alpha
,
void
*
X
,
const
integer
incX
);
void
cblas_sgemm
(
const
enum
CBLAS_ORDER
Order
,
const
enum
CBLAS_TRANSPOSE
TransA
,
const
enum
CBLAS_TRANSPOSE
TransB
,
const
int
M
,
const
int
N
,
const
int
K
,
const
float
alpha
,
const
float
*
A
,
const
int
lda
,
const
float
*
B
,
const
int
ldb
,
const
float
beta
,
float
*
C
,
const
int
ldc
);
const
enum
CBLAS_TRANSPOSE
TransB
,
const
int
eger
M
,
const
integer
N
,
const
int
eger
K
,
const
float
alpha
,
const
float
*
A
,
const
int
eger
lda
,
const
float
*
B
,
const
integer
ldb
,
const
float
beta
,
float
*
C
,
const
int
eger
ldc
);
void
cblas_dgemm
(
const
enum
CBLAS_ORDER
Order
,
const
enum
CBLAS_TRANSPOSE
TransA
,
const
enum
CBLAS_TRANSPOSE
TransB
,
const
int
M
,
const
int
N
,
const
int
K
,
const
double
alpha
,
const
double
*
A
,
const
int
lda
,
const
double
*
B
,
const
int
ldb
,
const
double
beta
,
double
*
C
,
const
int
ldc
);
const
enum
CBLAS_TRANSPOSE
TransB
,
const
int
eger
M
,
const
integer
N
,
const
int
eger
K
,
const
double
alpha
,
const
double
*
A
,
const
int
eger
lda
,
const
double
*
B
,
const
integer
ldb
,
const
double
beta
,
double
*
C
,
const
int
eger
ldc
);
void
cblas_cgemm
(
const
enum
CBLAS_ORDER
Order
,
const
enum
CBLAS_TRANSPOSE
TransA
,
const
enum
CBLAS_TRANSPOSE
TransB
,
const
int
M
,
const
int
N
,
const
int
K
,
const
void
*
alpha
,
const
void
*
A
,
const
int
lda
,
const
void
*
B
,
const
int
ldb
,
const
void
*
beta
,
void
*
C
,
const
int
ldc
);
const
enum
CBLAS_TRANSPOSE
TransB
,
const
int
eger
M
,
const
integer
N
,
const
int
eger
K
,
const
void
*
alpha
,
const
void
*
A
,
const
int
eger
lda
,
const
void
*
B
,
const
integer
ldb
,
const
void
*
beta
,
void
*
C
,
const
int
eger
ldc
);
void
cblas_zgemm
(
const
enum
CBLAS_ORDER
Order
,
const
enum
CBLAS_TRANSPOSE
TransA
,
const
enum
CBLAS_TRANSPOSE
TransB
,
const
int
M
,
const
int
N
,
const
int
K
,
const
void
*
alpha
,
const
void
*
A
,
const
int
lda
,
const
void
*
B
,
const
int
ldb
,
const
void
*
beta
,
void
*
C
,
const
int
ldc
);
const
enum
CBLAS_TRANSPOSE
TransB
,
const
int
eger
M
,
const
integer
N
,
const
int
eger
K
,
const
void
*
alpha
,
const
void
*
A
,
const
int
eger
lda
,
const
void
*
B
,
const
integer
ldb
,
const
void
*
beta
,
void
*
C
,
const
int
eger
ldc
);
void
cblas_sgemv
(
const
enum
CBLAS_ORDER
order
,
const
enum
CBLAS_TRANSPOSE
TransA
,
const
int
M
,
const
int
N
,
const
float
alpha
,
const
float
*
A
,
const
int
lda
,
const
float
*
X
,
const
int
incX
,
const
float
beta
,
float
*
Y
,
const
int
incY
);
const
enum
CBLAS_TRANSPOSE
TransA
,
const
int
eger
M
,
const
integer
N
,
const
float
alpha
,
const
float
*
A
,
const
int
eger
lda
,
const
float
*
X
,
const
int
eger
incX
,
const
float
beta
,
float
*
Y
,
const
int
eger
incY
);
void
cblas_dgemv
(
const
enum
CBLAS_ORDER
order
,
const
enum
CBLAS_TRANSPOSE
TransA
,
const
int
M
,
const
int
N
,
const
double
alpha
,
const
double
*
A
,
const
int
lda
,
const
double
*
X
,
const
int
incX
,
const
double
beta
,
double
*
Y
,
const
int
incY
);
const
enum
CBLAS_TRANSPOSE
TransA
,
const
int
eger
M
,
const
integer
N
,
const
double
alpha
,
const
double
*
A
,
const
int
eger
lda
,
const
double
*
X
,
const
int
eger
incX
,
const
double
beta
,
double
*
Y
,
const
int
eger
incY
);
void
cblas_cgemv
(
const
enum
CBLAS_ORDER
order
,
const
enum
CBLAS_TRANSPOSE
TransA
,
const
int
M
,
const
int
N
,
const
void
*
alpha
,
const
void
*
A
,
const
int
lda
,
const
void
*
X
,
const
int
incX
,
const
void
*
beta
,
void
*
Y
,
const
int
incY
);
const
enum
CBLAS_TRANSPOSE
TransA
,
const
int
eger
M
,
const
integer
N
,
const
void
*
alpha
,
const
void
*
A
,
const
int
eger
lda
,
const
void
*
X
,
const
int
eger
incX
,
const
void
*
beta
,
void
*
Y
,
const
int
eger
incY
);
void
cblas_zgemv
(
const
enum
CBLAS_ORDER
order
,
const
enum
CBLAS_TRANSPOSE
TransA
,
const
int
M
,
const
int
N
,
const
void
*
alpha
,
const
void
*
A
,
const
int
lda
,
const
void
*
X
,
const
int
incX
,
const
void
*
beta
,
void
*
Y
,
const
int
incY
);
void
cblas_sger
(
const
enum
CBLAS_ORDER
order
,
const
int
M
,
const
int
N
,
const
float
alpha
,
const
float
*
X
,
const
int
incX
,
const
float
*
Y
,
const
int
incY
,
float
*
A
,
const
int
lda
);
void
cblas_dger
(
const
enum
CBLAS_ORDER
order
,
const
int
M
,
const
int
N
,
const
double
alpha
,
const
double
*
X
,
const
int
incX
,
const
double
*
Y
,
const
int
incY
,
double
*
A
,
const
int
lda
);
void
cblas_cgerc
(
const
enum
CBLAS_ORDER
order
,
const
int
M
,
const
int
N
,
const
void
*
alpha
,
const
void
*
X
,
const
int
incX
,
const
void
*
Y
,
const
int
incY
,
void
*
A
,
const
int
lda
);
void
cblas_zgerc
(
const
enum
CBLAS_ORDER
order
,
const
int
M
,
const
int
N
,
const
void
*
alpha
,
const
void
*
X
,
const
int
incX
,
const
void
*
Y
,
const
int
incY
,
void
*
A
,
const
int
lda
);
float
cblas_sdot
(
const
int
N
,
const
float
*
X
,
const
int
incX
,
const
float
*
Y
,
const
int
incY
);
double
cblas_ddot
(
const
int
N
,
const
double
*
X
,
const
int
incX
,
const
double
*
Y
,
const
int
incY
);
void
cblas_cdotu_sub
(
const
int
N
,
const
void
*
X
,
const
int
incX
,
const
void
*
Y
,
const
int
incY
,
void
*
dotu
);
void
cblas_zdotu_sub
(
const
int
N
,
const
void
*
X
,
const
int
incX
,
const
void
*
Y
,
const
int
incY
,
void
*
dotu
);
void
cblas_cdotc_sub
(
const
int
N
,
const
void
*
X
,
const
int
incX
,
const
void
*
Y
,
const
int
incY
,
void
*
dotc
);
void
cblas_zdotc_sub
(
const
int
N
,
const
void
*
X
,
const
int
incX
,
const
void
*
Y
,
const
int
incY
,
void
*
dotc
);
void
cblas_cgeru
(
const
enum
CBLAS_ORDER
order
,
const
int
M
,
const
int
N
,
const
void
*
alpha
,
const
void
*
X
,
const
int
incX
,
const
void
*
Y
,
const
int
incY
,
void
*
A
,
const
int
lda
);
void
cblas_zgeru
(
const
enum
CBLAS_ORDER
order
,
const
int
M
,
const
int
N
,
const
void
*
alpha
,
const
void
*
X
,
const
int
incX
,
const
void
*
Y
,
const
int
incY
,
void
*
A
,
const
int
lda
);
const
enum
CBLAS_TRANSPOSE
TransA
,
const
int
eger
M
,
const
integer
N
,
const
void
*
alpha
,
const
void
*
A
,
const
int
eger
lda
,
const
void
*
X
,
const
int
eger
incX
,
const
void
*
beta
,
void
*
Y
,
const
int
eger
incY
);
void
cblas_sger
(
const
enum
CBLAS_ORDER
order
,
const
int
eger
M
,
const
integer
N
,
const
float
alpha
,
const
float
*
X
,
const
int
eger
incX
,
const
float
*
Y
,
const
int
eger
incY
,
float
*
A
,
const
integer
lda
);
void
cblas_dger
(
const
enum
CBLAS_ORDER
order
,
const
int
eger
M
,
const
integer
N
,
const
double
alpha
,
const
double
*
X
,
const
int
eger
incX
,
const
double
*
Y
,
const
int
eger
incY
,
double
*
A
,
const
integer
lda
);
void
cblas_cgerc
(
const
enum
CBLAS_ORDER
order
,
const
int
eger
M
,
const
integer
N
,
const
void
*
alpha
,
const
void
*
X
,
const
int
eger
incX
,
const
void
*
Y
,
const
int
eger
incY
,
void
*
A
,
const
integer
lda
);
void
cblas_zgerc
(
const
enum
CBLAS_ORDER
order
,
const
int
eger
M
,
const
integer
N
,
const
void
*
alpha
,
const
void
*
X
,
const
int
eger
incX
,
const
void
*
Y
,
const
int
eger
incY
,
void
*
A
,
const
integer
lda
);
float
cblas_sdot
(
const
int
eger
N
,
const
float
*
X
,
const
integer
incX
,
const
float
*
Y
,
const
int
eger
incY
);
double
cblas_ddot
(
const
int
eger
N
,
const
double
*
X
,
const
integer
incX
,
const
double
*
Y
,
const
int
eger
incY
);
void
cblas_cdotu_sub
(
const
int
eger
N
,
const
void
*
X
,
const
integer
incX
,
const
void
*
Y
,
const
int
eger
incY
,
void
*
dotu
);
void
cblas_zdotu_sub
(
const
int
eger
N
,
const
void
*
X
,
const
integer
incX
,
const
void
*
Y
,
const
int
eger
incY
,
void
*
dotu
);
void
cblas_cdotc_sub
(
const
int
eger
N
,
const
void
*
X
,
const
integer
incX
,
const
void
*
Y
,
const
int
eger
incY
,
void
*
dotc
);
void
cblas_zdotc_sub
(
const
int
eger
N
,
const
void
*
X
,
const
integer
incX
,
const
void
*
Y
,
const
int
eger
incY
,
void
*
dotc
);
void
cblas_cgeru
(
const
enum
CBLAS_ORDER
order
,
const
int
eger
M
,
const
integer
N
,
const
void
*
alpha
,
const
void
*
X
,
const
int
eger
incX
,
const
void
*
Y
,
const
int
eger
incY
,
void
*
A
,
const
integer
lda
);
void
cblas_zgeru
(
const
enum
CBLAS_ORDER
order
,
const
int
eger
M
,
const
integer
N
,
const
void
*
alpha
,
const
void
*
X
,
const
int
eger
incX
,
const
void
*
Y
,
const
int
eger
incY
,
void
*
A
,
const
integer
lda
);
}
// ----------------------------------------------------------------------------------------
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment