35 #ifndef _BLAZE_MATH_LAPACK_CLAPACK_POTRI_H_ 36 #define _BLAZE_MATH_LAPACK_CLAPACK_POTRI_H_ 56 #if !defined(INTEL_MKL_VERSION) 83 void potri(
char uplo,
int n,
float* A,
int lda,
int* info );
85 void potri(
char uplo,
int n,
double* A,
int lda,
int* info );
87 void potri(
char uplo,
int n, complex<float>* A,
int lda,
int* info );
89 void potri(
char uplo,
int n, complex<double>* A,
int lda,
int* info );
125 inline void potri(
char uplo,
int n,
float* A,
int lda,
int* info )
127 #if defined(INTEL_MKL_VERSION) 167 inline void potri(
char uplo,
int n,
double* A,
int lda,
int* info )
169 #if defined(INTEL_MKL_VERSION) 209 inline void potri(
char uplo,
int n, complex<float>* A,
int lda,
int* info )
213 #if defined(INTEL_MKL_VERSION) 215 using ET = MKL_Complex8;
256 inline void potri(
char uplo,
int n, complex<double>* A,
int lda,
int* info )
260 #if defined(INTEL_MKL_VERSION) 262 using ET = MKL_Complex16;
Header file for basic type definitions.
void potri(char uplo, int n, float *A, int lda, int *info)
LAPACK kernel for the inversion of the given dense positive definite single precision column-major sq...
Definition: potri.h:125
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.