PLASMA  2.8.0
PLASMA - Parallel Linear Algebra for Scalable Multi-core Architectures
core_zcblas.h
1 
17 #ifndef _PLASMA_CORE_ZCBLAS_H_
18 #define _PLASMA_CORE_ZCBLAS_H_
19 
20 #ifdef __cplusplus
21 extern "C" {
22 #endif
23 
27 void CORE_clag2z(int m, int n,
28  const PLASMA_Complex32_t *A, int lda,
29  PLASMA_Complex64_t *B, int ldb);
30 void CORE_zlag2c(int m, int n,
31  const PLASMA_Complex64_t *A, int lda,
32  PLASMA_Complex32_t *B, int ldb, int *info);
33 
34 #if defined(QUARK_H)
35 
38 void QUARK_CORE_clag2z(Quark *quark, Quark_Task_Flags *task_flags,
39  int m, int n, int nb,
40  const PLASMA_Complex32_t *A, int lda,
41  PLASMA_Complex64_t *B, int ldb);
42 void QUARK_CORE_zlag2c(Quark *quark, Quark_Task_Flags *task_flags,
43  int m, int n, int nb,
44  const PLASMA_Complex64_t *A, int lda,
45  PLASMA_Complex32_t *B, int ldb,
46  PLASMA_sequence *sequence, PLASMA_request *request);
47 
51 void CORE_clag2z_quark(Quark *quark);
52 void CORE_zlag2c_quark(Quark *quark);
53 
54 #endif /* defined(QUARK_H) */
55 
56 #ifdef __cplusplus
57 }
58 #endif
59 
60 #endif
void CORE_clag2z(int m, int n, const PLASMA_Complex32_t *A, int lda, PLASMA_Complex64_t *B, int ldb)
Definition: core_zlag2c.c:95
Definition: plasma.h:34
Definition: plasma.h:24
void CORE_zlag2c(int m, int n, const PLASMA_Complex64_t *A, int lda, PLASMA_Complex32_t *B, int ldb, int *info)
Definition: core_zlag2c.c:56