12345678910111213141516171819202122232425262728293031323334 |
- #ifndef __MPI_CHOLESKY_CODELETS_H__
- #define __MPI_CHOLESKY_CODELETS_H__
- int my_distrib(int x, int y, int nb_nodes);
- void dw_cholesky(float ***matA, unsigned size, unsigned ld, unsigned nblocks, int rank, int nodes, double *timing, double *flops);
- void dw_cholesky_check_computation(float ***matA, unsigned size, int rank, int nodes, int *correctness, double *flops);
- #endif
|