123456789101112131415161718192021222324252627282930 |
- #ifndef __MPI_CHOLESKY_MATRIX_H__
- #define __MPI_CHOLESKY_MATRIX_H__
- int my_distrib(int y, int x, int nb_nodes);
- void matrix_display(float ***bmat, int rank, int nodes);
- 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
|