123456789101112131415161718192021222324252627282930 |
- #ifndef __MPI_CHOLESKY_CODELETS_H__
- #define __MPI_CHOLESKY_CODELETS_H__
- void dw_cholesky(float ***matA, unsigned ld, int rank, int nodes, double *timing, double *flops);
- void dw_cholesky_check_computation(float ***matA, int rank, int nodes, int *correctness, double *flops, double epsilon);
- #endif
|