Advertisement
Guest User

Untitled

a guest
Jun 22nd, 2017
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.98 KB | None | 0 0
  1. MPI_Gather : 0 a
  2. MPI_Allgather : 0 a a b
  3. MPI_Scatter : 0 a b c
  4. MPI_Alltoall : 0 a b a c
  5. MPI_Bcast : 0 b
  6. MPI_Gather : 1 b a b
  7. MPI_Allgather : 1 b a b
  8. MPI_Scatter : 1 c d d
  9. MPI_Alltoall : 1 c d b d
  10. MPI_Bcast : 1 b b
  11.  
  12.  
  13. Function Proc Sendbuf Recvbuf
  14. -------- ---- ------- -------
  15. MPI_Gather : 0 a
  16. MPI_Allgather : 0 a a b c
  17. MPI_Scatter : 0 a b c d
  18. MPI_Alltoall : 0 a b c a d g
  19. MPI_Bcast : 0 b
  20. MPI_Gather : 1 b a b c
  21. MPI_Allgather : 1 b a b c
  22. MPI_Scatter : 1 d e f e
  23. MPI_Alltoall : 1 d e f b e h
  24. MPI_Bcast : 1 b b
  25. MPI_Gather : 2 c
  26. MPI_Allgather : 2 c a b c
  27. MPI_Scatter : 2 g h i f
  28. MPI_Alltoall : 2 g h i c f i
  29. MPI_Bcast : 2 b
  30.  
  31.  
  32. Function Proc Sendbuf Recvbuf
  33. -------- ---- ------- -------
  34. MPI_Gather : 0 a
  35. MPI_Allgather : 0 a a b c d
  36. MPI_Scatter : 0 a b c d e
  37. MPI_Alltoall : 0 a b c d a e i m
  38. MPI_Bcast : 0 b
  39. MPI_Gather : 1 b a b c d
  40. MPI_Allgather : 1 b a b c d
  41. MPI_Scatter : 1 e f g h f
  42. MPI_Alltoall : 1 e f g h b f j n
  43. MPI_Bcast : 1 b b
  44. MPI_Gather : 2 c
  45. MPI_Allgather : 2 c a b c d
  46. MPI_Scatter : 2 i j k l g
  47. MPI_Alltoall : 2 i j k l c g k o
  48. MPI_Bcast : 2 b
  49. MPI_Gather : 3 d
  50. MPI_Allgather : 3 d a b c d
  51. MPI_Scatter : 3 m n o p h
  52. MPI_Alltoall : 3 m n o p d h l p
  53. MPI_Bcast : 3 b
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement