PLASMA  2.4.5
PLASMA - Parallel Linear Algebra for Scalable Multi-core Architectures
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups
cauxiliary.h
Go to the documentation of this file.
1 
6 #ifndef CAUXILIARY_H
7 #define CAUXILIARY_H
8 
9 int c_check_orthogonality (int M, int N, int LDQ, PLASMA_Complex32_t *Q);
11 int c_check_LLTfactorization(int N, PLASMA_Complex32_t *A1, PLASMA_Complex32_t *A2, int LDA, int uplo);
12 float c_check_gemm(PLASMA_enum transA, PLASMA_enum transB, int M, int N, int K,
13  PLASMA_Complex32_t alpha, PLASMA_Complex32_t *A, int LDA,
14  PLASMA_Complex32_t *B, int LDB,
16  PLASMA_Complex32_t *Cref, int LDC,
17  float *Cinitnorm, float *Cplasmanorm, float *Clapacknorm );
18 
20  int M, int NRHS, PLASMA_Complex32_t alpha,
21  PLASMA_Complex32_t *A, int LDA,
22  PLASMA_Complex32_t *Bplasma, PLASMA_Complex32_t *Bref, int LDB,
23  float *Binitnorm, float *Bplasmanorm, float *Blapacknorm );
24 
25 float c_check_solution(int M, int N, int NRHS,
26  PLASMA_Complex32_t *A1, int LDA,
27  PLASMA_Complex32_t *B1, PLASMA_Complex32_t *B2, int LDB,
28  float *anorm, float *bnorm, float *xnorm);
29 
30 #endif /* CAUXILIARY_H */