hpl_mpi-rcce.h 397 B

123456789101112131415
  1. #include "hpl.h"
  2. #include "RCCE.h"
  3. #define MPI_COMM_WORLD RCCE_COMM_WORLD
  4. #define MPI_SUCCESS RCCE_SUCCESS
  5. // We abuse the MPI data type to store the size of the data type
  6. #define MPI_DOUBLE (sizeof(double))
  7. #define MPI_FLOAT (sizeof(float))
  8. #define MPI_INT (sizeof(int))
  9. typedef RCCE_COMM MPI_Comm ;
  10. typedef int MPI_Datatype;
  11. typedef int MPI_Request;
  12. typedef int MPI_Status;