Advertisement
Guest User

Untitled

a guest
Jul 20th, 2018
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. CALL MPI_BCAST(PlCoordArray, SIZE(PlCoordArray), MPI_LONG_DOUBLE, 0, ELMER_COMM_WORLD, ierr) !This one works - SIZE is 30
  2. CALL MPI_BCAST(PlZArray, SIZE(PlZArray), MPI_LONG_DOUBLE, 0, ELMER_COMM_WORLD, ierr) !This one fails - SIZE is 7515
  3. CALL MPI_BCAST(PlMRArray, SIZE(PlMRArray), MPI_LONG_DOUBLE, 0, ELMER_COMM_WORLD, ierr) !This one presumably fails
  4.  
  5. !I've tried messing around with the counts and data types, but doesn't seem to make any difference.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement