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
core_zcblas.h
Go to the documentation of this file.
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  PLASMA_Complex32_t *A, int lda,
29  PLASMA_Complex64_t *B, int ldb);
30 void CORE_zlag2c(int m, int n,
31  PLASMA_Complex64_t *A, int lda,
32  PLASMA_Complex32_t *B, int ldb, int *info);
33 
37 void QUARK_CORE_clag2z(Quark *quark, Quark_Task_Flags *task_flags,
38  int m, int n, int nb,
39  PLASMA_Complex32_t *A, int lda,
40  PLASMA_Complex64_t *B, int ldb);
41 void QUARK_CORE_zlag2c(Quark *quark, Quark_Task_Flags *task_flags,
42  int m, int n, int nb,
43  PLASMA_Complex64_t *A, int lda,
44  PLASMA_Complex32_t *B, int ldb,
45  PLASMA_sequence *sequence, PLASMA_request *request);
46 
50 void CORE_clag2z_quark(Quark *quark);
51 void CORE_zlag2c_quark(Quark *quark);
52 
53 #ifdef __cplusplus
54 }
55 #endif
56 
57 #endif