mirror of
https://gitlab.com/libeigen/eigen.git
synced 2025-08-12 11:49:02 +08:00
fix compilation issue with MKL's backend
This commit is contained in:
parent
d428b620aa
commit
110cf8bbf5
@ -51,7 +51,7 @@ struct triangular_solve_matrix<EIGTYPE,Index,OnTheLeft,Mode,Conjugate,TriStorage
|
|||||||
static EIGEN_DONT_INLINE void run( \
|
static EIGEN_DONT_INLINE void run( \
|
||||||
Index size, Index otherSize, \
|
Index size, Index otherSize, \
|
||||||
const EIGTYPE* _tri, Index triStride, \
|
const EIGTYPE* _tri, Index triStride, \
|
||||||
EIGTYPE* _other, Index otherStride) \
|
EIGTYPE* _other, Index otherStride, level3_blocking<EIGTYPE,EIGTYPE>& /*blocking*/) \
|
||||||
{ \
|
{ \
|
||||||
MKL_INT m = size, n = otherSize, lda, ldb; \
|
MKL_INT m = size, n = otherSize, lda, ldb; \
|
||||||
char side = 'L', uplo, diag='N', transa; \
|
char side = 'L', uplo, diag='N', transa; \
|
||||||
@ -106,7 +106,7 @@ struct triangular_solve_matrix<EIGTYPE,Index,OnTheRight,Mode,Conjugate,TriStorag
|
|||||||
static EIGEN_DONT_INLINE void run( \
|
static EIGEN_DONT_INLINE void run( \
|
||||||
Index size, Index otherSize, \
|
Index size, Index otherSize, \
|
||||||
const EIGTYPE* _tri, Index triStride, \
|
const EIGTYPE* _tri, Index triStride, \
|
||||||
EIGTYPE* _other, Index otherStride) \
|
EIGTYPE* _other, Index otherStride, level3_blocking<EIGTYPE,EIGTYPE>& /*blocking*/) \
|
||||||
{ \
|
{ \
|
||||||
MKL_INT m = otherSize, n = size, lda, ldb; \
|
MKL_INT m = otherSize, n = size, lda, ldb; \
|
||||||
char side = 'R', uplo, diag='N', transa; \
|
char side = 'R', uplo, diag='N', transa; \
|
||||||
|
Loading…
x
Reference in New Issue
Block a user