mirror of
https://gitlab.com/libeigen/eigen.git
synced 2026-04-10 11:34:33 +08:00
fix compilation issue with MKL's backend
This commit is contained in:
@@ -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; \
|
||||||
|
|||||||
Reference in New Issue
Block a user