--sas

l17.h

Mar 10th, 2022
887
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.22 KB | None | 0 0
  1. #ifndef L17_CHECK_ERROR
  2. #define L17_CHECK_ERROR(funcname, errcode) \
  3. if ((errcode) != MPI_SUCCESS) {            \
  4.     printf("Error in " #funcname ". Terminating.\n"); \
  5.     MPI_Abort(MPI_COMM_WORLD, (errcode));  \
  6. }
  7. #endif
Advertisement
Add Comment
Please, Sign In to add comment