Skip to content

Commit

Permalink
Fix demo function names
Browse files Browse the repository at this point in the history
  • Loading branch information
TannerFirl committed Jan 26, 2024
1 parent cf9bace commit f5852bb
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 12 deletions.
4 changes: 2 additions & 2 deletions demo/osu_allgather.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

from mpi4py import MPI

def osu_bcast(
def osu_allgather(
BENCHMARH = "MPI Allgather Latency Test",
skip = 1000,
loop = 10000,
Expand Down Expand Up @@ -69,4 +69,4 @@ def allocate(n):


if __name__ == '__main__':
osu_bcast()
osu_allgather()
4 changes: 2 additions & 2 deletions demo/osu_alltoallv.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from mpi4py import MPI
from array import array

def osu_alltoall(
def osu_alltoallv(
BENCHMARH = "MPI Alltoallv Latency Test",
skip = 200,
loop = 1000,
Expand Down Expand Up @@ -74,4 +74,4 @@ def allocate(n):


if __name__ == '__main__':
osu_alltoall()
osu_alltoallv()
4 changes: 2 additions & 2 deletions demo/osu_barrier.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

from mpi4py import MPI

def osu_bcast(
def osu_barrier(
BENCHMARH = "MPI Barrier Latency Test",
skip = 1000,
loop = 10000,
Expand Down Expand Up @@ -46,4 +46,4 @@ def osu_bcast(


if __name__ == '__main__':
osu_bcast()
osu_barrier()
4 changes: 2 additions & 2 deletions demo/osu_bibw.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

from mpi4py import MPI

def osu_bw(
def osu_bibw(
BENCHMARH = "MPI Bi-Directional Bandwidth Test",
skip = 10,
loop = 100,
Expand Down Expand Up @@ -90,4 +90,4 @@ def allocate(n):


if __name__ == '__main__':
osu_bw()
osu_bibw()
4 changes: 2 additions & 2 deletions demo/osu_gather.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

from mpi4py import MPI

def osu_bcast(
def osu_gather(
BENCHMARH = "MPI Gather Latency Test",
skip = 1000,
loop = 10000,
Expand Down Expand Up @@ -76,4 +76,4 @@ def allocate(n):


if __name__ == '__main__':
osu_bcast()
osu_gather()
4 changes: 2 additions & 2 deletions demo/osu_scatter.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

from mpi4py import MPI

def osu_bcast(
def osu_scatter(
BENCHMARH = "MPI Scatter Latency Test",
skip = 1000,
loop = 10000,
Expand Down Expand Up @@ -76,4 +76,4 @@ def allocate(n):


if __name__ == '__main__':
osu_bcast()
osu_scatter()

0 comments on commit f5852bb

Please sign in to comment.