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_dsblas.h
Go to the documentation of this file.
1 
17 #ifndef _PLASMA_CORE_DSBLAS_H_
18 #define _PLASMA_CORE_DSBLAS_H_
19 
20 #ifdef __cplusplus
21 extern "C" {
22 #endif
23 
27 void CORE_slag2d(int m, int n,
28  float *A, int lda,
29  double *B, int ldb);
30 void CORE_dlag2s(int m, int n,
31  double *A, int lda,
32  float *B, int ldb, int *info);
33 
37 void QUARK_CORE_slag2d(Quark *quark, Quark_Task_Flags *task_flags,
38  int m, int n, int nb,
39  float *A, int lda,
40  double *B, int ldb);
41 void QUARK_CORE_dlag2s(Quark *quark, Quark_Task_Flags *task_flags,
42  int m, int n, int nb,
43  double *A, int lda,
44  float *B, int ldb,
45  PLASMA_sequence *sequence, PLASMA_request *request);
46 
50 void CORE_slag2d_quark(Quark *quark);
51 void CORE_dlag2s_quark(Quark *quark);
52 
53 #ifdef __cplusplus
54 }
55 #endif
56 
57 #endif