Skip to content

Commit f5852bb

Browse files
committed
Fix demo function names
1 parent cf9bace commit f5852bb

File tree

6 files changed

+12
-12
lines changed

6 files changed

+12
-12
lines changed

demo/osu_allgather.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
from mpi4py import MPI
44

5-
def osu_bcast(
5+
def osu_allgather(
66
BENCHMARH = "MPI Allgather Latency Test",
77
skip = 1000,
88
loop = 10000,
@@ -69,4 +69,4 @@ def allocate(n):
6969

7070

7171
if __name__ == '__main__':
72-
osu_bcast()
72+
osu_allgather()

demo/osu_alltoallv.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
from mpi4py import MPI
44
from array import array
55

6-
def osu_alltoall(
6+
def osu_alltoallv(
77
BENCHMARH = "MPI Alltoallv Latency Test",
88
skip = 200,
99
loop = 1000,
@@ -74,4 +74,4 @@ def allocate(n):
7474

7575

7676
if __name__ == '__main__':
77-
osu_alltoall()
77+
osu_alltoallv()

demo/osu_barrier.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
from mpi4py import MPI
44

5-
def osu_bcast(
5+
def osu_barrier(
66
BENCHMARH = "MPI Barrier Latency Test",
77
skip = 1000,
88
loop = 10000,
@@ -46,4 +46,4 @@ def osu_bcast(
4646

4747

4848
if __name__ == '__main__':
49-
osu_bcast()
49+
osu_barrier()

demo/osu_bibw.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
from mpi4py import MPI
44

5-
def osu_bw(
5+
def osu_bibw(
66
BENCHMARH = "MPI Bi-Directional Bandwidth Test",
77
skip = 10,
88
loop = 100,
@@ -90,4 +90,4 @@ def allocate(n):
9090

9191

9292
if __name__ == '__main__':
93-
osu_bw()
93+
osu_bibw()

demo/osu_gather.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
from mpi4py import MPI
44

5-
def osu_bcast(
5+
def osu_gather(
66
BENCHMARH = "MPI Gather Latency Test",
77
skip = 1000,
88
loop = 10000,
@@ -76,4 +76,4 @@ def allocate(n):
7676

7777

7878
if __name__ == '__main__':
79-
osu_bcast()
79+
osu_gather()

demo/osu_scatter.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
from mpi4py import MPI
44

5-
def osu_bcast(
5+
def osu_scatter(
66
BENCHMARH = "MPI Scatter Latency Test",
77
skip = 1000,
88
loop = 10000,
@@ -76,4 +76,4 @@ def allocate(n):
7676

7777

7878
if __name__ == '__main__':
79-
osu_bcast()
79+
osu_scatter()

0 commit comments

Comments
 (0)