New pages
From NIMBioS
- 14:17, 16 December 2025 Rocky Python MPI Hello World (hist | edit) [1,334 bytes] Jondale (talk | contribs) (Created page with "= MPI Jobs on Rocky = == Supported Stack == We currently recommend and support: * '''OpenMPI 4.1.6''' * '''PMIx 4.2.6''' * '''mpi4py 4.0.1''' = MPI Example: Hello World in Python = == hello_mpi4py.py == <syntaxhighlight lang="python"> from mpi4py import MPI import socket comm = MPI.COMM_WORLD rank = comm.Get_rank() size = comm.Get_size() hostname = socket.gethostname() print(f"Hello from rank {rank} of {size} on {hostname}") </syntaxhighlight> == hello_mpi4py.s...")
- 20:48, 20 November 2025 Rocky MPI Hello World (hist | edit) [2,319 bytes] Jondale (talk | contribs) (Created page with "TBA")