Page MenuHomec4science

mpi_Bcast.py
No OneTemporary

File Metadata

Created
Thu, Oct 3, 15:04

mpi_Bcast.py

from pNbody import *
if mpi.mpi_IsMaster():
msg = "hello from the master"
else:
msg = "hello from a slave"
msg = mpi.mpi_Bcast(0,msg)
mpi.mpi_iprint(msg)

Event Timeline