35 #ifndef _BLAZE_MATH_LAPACK_CLAPACK_SYTRI_H_ 36 #define _BLAZE_MATH_LAPACK_CLAPACK_SYTRI_H_ 56 #if !defined(INTEL_MKL_VERSION) 59 void ssytri_(
char* uplo,
int* n,
float* A,
int* lda,
int* ipiv,
float* work,
61 void dsytri_(
char* uplo,
int* n,
double* A,
int* lda,
int* ipiv,
double* work,
63 void csytri_(
char* uplo,
int* n,
float* A,
int* lda,
int* ipiv,
float* work,
65 void zsytri_(
char* uplo,
int* n,
double* A,
int* lda,
int* ipiv,
double* work,
87 void sytri(
char uplo,
int n,
float* A,
int lda,
const int* ipiv,
float* work,
int* info );
89 void sytri(
char uplo,
int n,
double* A,
int lda,
const int* ipiv,
double* work,
int* info );
91 void sytri(
char uplo,
int n, complex<float>* A,
int lda,
92 const int* ipiv, complex<float>* work,
int* info );
94 void sytri(
char uplo,
int n, complex<double>* A,
int lda,
95 const int* ipiv, complex<double>* work,
int* info );
132 inline void sytri(
char uplo,
int n,
float* A,
int lda,
const int* ipiv,
float* work,
int* info )
134 #if defined(INTEL_MKL_VERSION) 175 inline void sytri(
char uplo,
int n,
double* A,
int lda,
const int* ipiv,
double* work,
int* info )
177 #if defined(INTEL_MKL_VERSION) 218 inline void sytri(
char uplo,
int n, complex<float>* A,
int lda,
219 const int* ipiv, complex<float>* work,
int* info )
223 #if defined(INTEL_MKL_VERSION) 225 using ET = MKL_Complex8;
230 csytri_( &uplo, &n, reinterpret_cast<ET*>( A ), &lda,
231 const_cast<int*>( ipiv ), reinterpret_cast<ET*>( work ),
269 inline void sytri(
char uplo,
int n, complex<double>* A,
int lda,
270 const int* ipiv, complex<double>* work,
int* info )
274 #if defined(INTEL_MKL_VERSION) 276 using ET = MKL_Complex16;
281 zsytri_( &uplo, &n, reinterpret_cast<ET*>( A ), &lda,
282 const_cast<int*>( ipiv ), reinterpret_cast<ET*>( work ),
Header file for basic type definitions.
void sytri(char uplo, int n, float *A, int lda, const int *ipiv, float *work, int *info)
LAPACK kernel for the inversion of the given dense symmetric indefinite single precision column-major...
Definition: sytri.h:132
Namespace of the Blaze C++ math library.
Definition: Blaze.h:58
Header file for the complex data type.
#define BLAZE_STATIC_ASSERT(expr)
Compile time assertion macro.In case of an invalid compile time expression, a compilation error is cr...
Definition: StaticAssert.h:112
Size type of the Blaze library.