12345678910111213141516171819202122232425262728293031 |
- #ifndef __MPI_CHOLESKY_MATRIX_H__
- #define __MPI_CHOLESKY_MATRIX_H__
- int my_distrib(int x, int y, int nb_nodes);
- void matrix_display(float ***bmat, int rank);
- void matrix_init(float ****bmat, int rank, int nodes, int alloc_everywhere);
- void matrix_free(float ****bmat, int rank, int nodes, int alloc_everywhere);
- #endif
|