Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix demo function names #1

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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()