35 #ifndef _BLAZE_MATH_LAPACK_CLAPACK_TRSV_H_ 36 #define _BLAZE_MATH_LAPACK_CLAPACK_TRSV_H_ 59 void strsv_(
char* uplo,
char*
trans,
char* diag,
int* n,
float* A,
int* lda,
62 void dtrsv_(
char* uplo,
char*
trans,
char* diag,
int* n,
double* A,
int* lda,
65 void ctrsv_(
char* uplo,
char*
trans,
char* diag,
int* n,
float* A,
int* lda,
68 void ztrsv_(
char* uplo,
char*
trans,
char* diag,
int* n,
double* A,
int* lda,
91 void trsv(
char uplo,
char trans,
char diag,
int n,
const float* A,
92 int lda,
float* x,
int incX );
94 void trsv(
char uplo,
char trans,
char diag,
int n,
const double* A,
95 int lda,
double* x,
int incX );
97 void trsv(
char uplo,
char trans,
char diag,
int n,
const complex<float>* A,
98 int lda, complex<float>* x,
int incX );
100 void trsv(
char uplo,
char trans,
char diag,
int n,
const complex<double>* A,
101 int lda, complex<double>* x,
int incX );
141 inline void trsv(
char uplo,
char trans,
char diag,
int n,
const float* A,
142 int lda,
float* x,
int incX )
144 strsv_( &uplo, &
trans, &diag, &n, const_cast<float*>( A ), &lda, x, &incX,
185 inline void trsv(
char uplo,
char trans,
char diag,
int n,
const double* A,
186 int lda,
double* x,
int incX )
188 dtrsv_( &uplo, &
trans, &diag, &n, const_cast<double*>( A ), &lda, x, &incX,
229 inline void trsv(
char uplo,
char trans,
char diag,
int n,
const complex<float>* A,
230 int lda, complex<float>* x,
int incX )
234 ctrsv_( &uplo, &
trans, &diag, &n, const_cast<float*>( reinterpret_cast<const float*>( A ) ),
276 inline void trsv(
char uplo,
char trans,
char diag,
int n,
const complex<double>* A,
277 int lda, complex<double>* x,
int incX )
281 ztrsv_( &uplo, &
trans, &diag, &n, const_cast<double*>( reinterpret_cast<const double*>( A ) ),
Header file for basic type definitions.
void trsv(char uplo, char trans, char diag, int n, const float *A, int lda, float *x, int incX)
LAPACK kernel for solving a triangular single precision linear system of equations ( ).
Definition: trsv.h:141
Namespace of the Blaze C++ math library.
Definition: Blaze.h:58
decltype(auto) trans(const DenseMatrix< MT, SO > &dm)
Calculation of the transpose of the given dense matrix.
Definition: DMatTransExpr.h:765
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.