Skip to content

Commit e6ce87c

Browse files
authored
Merge pull request #9 from gjbex/development
Fix typo in output
2 parents 45c2f82 + f5800bd commit e6ce87c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

source-code/mpi4py/mpifitness.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ def pingpong(comm, nr_iters, msg_size):
3939
print(f'{rank} received {msg}, expected {dest}',
4040
file=sys.stderr)
4141
comm.Abort(1)
42-
print(f'{rank} -> {dest} pig-pong: {end_time - start_time}')
42+
print(f'{rank} -> {dest} pingpong: {end_time - start_time}')
4343
if rank == dest:
4444
start_time = time.time()
4545
msg = comm.recv(source=source)
@@ -49,7 +49,7 @@ def pingpong(comm, nr_iters, msg_size):
4949
print(f'{rank} received {msg}, expected {source}',
5050
file=sys.stderr)
5151
comm.Abort(1)
52-
print(f'{rank} -> {source} ping-pong: {end_time - start_time}')
52+
print(f'{rank} -> {source} pingpong: {end_time - start_time}')
5353
comm.barrier()
5454

5555

0 commit comments

Comments
 (0)