File tree 6 files changed +12
-12
lines changed
6 files changed +12
-12
lines changed Original file line number Diff line number Diff line change 2
2
3
3
from mpi4py import MPI
4
4
5
- def osu_bcast (
5
+ def osu_allgather (
6
6
BENCHMARH = "MPI Allgather Latency Test" ,
7
7
skip = 1000 ,
8
8
loop = 10000 ,
@@ -69,4 +69,4 @@ def allocate(n):
69
69
70
70
71
71
if __name__ == '__main__' :
72
- osu_bcast ()
72
+ osu_allgather ()
Original file line number Diff line number Diff line change 3
3
from mpi4py import MPI
4
4
from array import array
5
5
6
- def osu_alltoall (
6
+ def osu_alltoallv (
7
7
BENCHMARH = "MPI Alltoallv Latency Test" ,
8
8
skip = 200 ,
9
9
loop = 1000 ,
@@ -74,4 +74,4 @@ def allocate(n):
74
74
75
75
76
76
if __name__ == '__main__' :
77
- osu_alltoall ()
77
+ osu_alltoallv ()
Original file line number Diff line number Diff line change 2
2
3
3
from mpi4py import MPI
4
4
5
- def osu_bcast (
5
+ def osu_barrier (
6
6
BENCHMARH = "MPI Barrier Latency Test" ,
7
7
skip = 1000 ,
8
8
loop = 10000 ,
@@ -46,4 +46,4 @@ def osu_bcast(
46
46
47
47
48
48
if __name__ == '__main__' :
49
- osu_bcast ()
49
+ osu_barrier ()
Original file line number Diff line number Diff line change 2
2
3
3
from mpi4py import MPI
4
4
5
- def osu_bw (
5
+ def osu_bibw (
6
6
BENCHMARH = "MPI Bi-Directional Bandwidth Test" ,
7
7
skip = 10 ,
8
8
loop = 100 ,
@@ -90,4 +90,4 @@ def allocate(n):
90
90
91
91
92
92
if __name__ == '__main__' :
93
- osu_bw ()
93
+ osu_bibw ()
Original file line number Diff line number Diff line change 2
2
3
3
from mpi4py import MPI
4
4
5
- def osu_bcast (
5
+ def osu_gather (
6
6
BENCHMARH = "MPI Gather Latency Test" ,
7
7
skip = 1000 ,
8
8
loop = 10000 ,
@@ -76,4 +76,4 @@ def allocate(n):
76
76
77
77
78
78
if __name__ == '__main__' :
79
- osu_bcast ()
79
+ osu_gather ()
Original file line number Diff line number Diff line change 2
2
3
3
from mpi4py import MPI
4
4
5
- def osu_bcast (
5
+ def osu_scatter (
6
6
BENCHMARH = "MPI Scatter Latency Test" ,
7
7
skip = 1000 ,
8
8
loop = 10000 ,
@@ -76,4 +76,4 @@ def allocate(n):
76
76
77
77
78
78
if __name__ == '__main__' :
79
- osu_bcast ()
79
+ osu_scatter ()
You can’t perform that action at this time.
0 commit comments