PLASMA
2.6.0
PLASMA - Parallel Linear Algebra for Scalable Multi-core Architectures
Main Page
Modules
Data Types List
All
Data Structures
Functions
Variables
Groups
plasma_ds.h
1
16
#ifndef _PLASMA_DS_H_
17
#define _PLASMA_DS_H_
18
19
#if defined(c_plusplus) || defined(__cplusplus)
20
extern
"C"
{
21
#endif
22
26
int
PLASMA_dsgesv
(
int
N,
int
NRHS,
double
*A,
int
LDA,
int
* IPIV,
double
*B,
int
LDB,
double
*X,
int
LDX,
int
*ITER);
27
int
PLASMA_dsposv
(PLASMA_enum uplo,
int
N,
int
NRHS,
double
*A,
int
LDA,
double
*B,
int
LDB,
double
*X,
int
LDX,
int
*ITER);
28
/* int PLASMA_dsgels(PLASMA_enum trans, int M, int N, int NRHS, double *A, int LDA, double *B, int LDB, double *X, int LDX, int *ITER); */
29
int
PLASMA_dsungesv
(PLASMA_enum trans,
int
N,
int
NRHS,
double
*A,
int
LDA,
double
*B,
int
LDB,
double
*X,
int
LDX,
int
*ITER);
30
34
int
PLASMA_dsgesv_Tile
(
PLASMA_desc
*A,
int
*IPIV,
PLASMA_desc
*B,
PLASMA_desc
*X,
int
*ITER);
35
int
PLASMA_dsposv_Tile
(PLASMA_enum uplo,
PLASMA_desc
*A,
PLASMA_desc
*B,
PLASMA_desc
*X,
int
*ITER);
36
/* int PLASMA_dsgels_Tile(PLASMA_enum trans, PLASMA_desc *A, PLASMA_desc *T, PLASMA_desc *B, PLASMA_desc *X, int *ITER); */
37
int
PLASMA_dsungesv_Tile
(PLASMA_enum trans,
PLASMA_desc
*A,
PLASMA_desc
*T,
PLASMA_desc
*B,
PLASMA_desc
*X,
int
*ITER);
38
42
int
PLASMA_dsgesv_Tile_Async
(
PLASMA_desc
*A,
int
*IPIV,
PLASMA_desc
*B,
PLASMA_desc
*X,
int
*ITER,
PLASMA_sequence
*sequence,
PLASMA_request
*request);
43
int
PLASMA_dsposv_Tile_Async
(PLASMA_enum uplo,
PLASMA_desc
*A,
PLASMA_desc
*B,
PLASMA_desc
*X,
int
*ITER,
PLASMA_sequence
*sequence,
PLASMA_request
*request);
44
/* int PLASMA_dsgels_Tile_Async(PLASMA_enum trans, PLASMA_desc *A, PLASMA_desc *T, PLASMA_desc *B, PLASMA_desc *X, int *ITER, PLASMA_sequence *sequence, PLASMA_request *request); */
45
int
PLASMA_dsungesv_Tile_Async
(PLASMA_enum trans,
PLASMA_desc
*A,
PLASMA_desc
*T,
PLASMA_desc
*B,
PLASMA_desc
*X,
int
*ITER,
PLASMA_sequence
*sequence,
PLASMA_request
*request);
46
47
#if defined(c_plusplus) || defined(__cplusplus)
48
}
49
#endif
50
51
#endif
include
plasma_ds.h
Generated on Tue Jan 7 2014 11:47:41 for PLASMA by
1.8.4