00001
00015 #ifndef _WORKSPACE_Z_H_
00016 #define _WORKSPACE_Z_H_
00017
00018 #ifdef __cplusplus
00019 extern "C" {
00020 #endif
00021
00022
00025 int PLASMA_Alloc_Workspace_dgels(int M, int N, double **T);
00026 int PLASMA_Alloc_Workspace_dgeqrf(int M, int N, double **T);
00027 int PLASMA_Alloc_Workspace_dgelqf(int M, int N, double **T);
00028 int PLASMA_Alloc_Workspace_dgesv(int N, double **L, int **IPIV);
00029 int PLASMA_Alloc_Workspace_dgetrf(int M, int N, double **L, int **IPIV);
00030
00031 int PLASMA_Alloc_Workspace_dgels_Tile (int M, int N, PLASMA_desc **descT);
00032 int PLASMA_Alloc_Workspace_dgeqrf_Tile(int M, int N, PLASMA_desc **descT);
00033 int PLASMA_Alloc_Workspace_dgelqf_Tile(int M, int N, PLASMA_desc **descT);
00034 int PLASMA_Alloc_Workspace_dgesv_Tile (int N, PLASMA_desc **descL, int **IPIV);
00035 int PLASMA_Alloc_Workspace_dgetrf_Tile(int N, PLASMA_desc **descL, int **IPIV);
00036 #ifdef __cplusplus
00037 }
00038 #endif
00039
00040 #endif