1234567891011121314151617181920212223242526272829303132 |
- #ifndef __MPI_CHOLESKY_H__
- #define __MPI_CHOLESKY_H__
- #include <starpu.h>
- #include <starpu_mpi.h>
- #include "mpi_cholesky_codelets.h"
- #include "mpi_cholesky_kernels.h"
- #include "mpi_cholesky_models.h"
- #include "mpi_decomposition_matrix.h"
- #include "mpi_decomposition_params.h"
- #define FPRINTF(ofile, fmt, ...) do { if (!getenv("STARPU_SSILENT")) {fprintf(ofile, fmt, ## __VA_ARGS__); }} while(0)
- #endif
|