12345678910111213141516171819202122232425262728293031 |
- #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);
- #endif
|