Revision f5d395aca20928fe5b6962b4222d0945e982de72 authored by Simon Byrne on 23 April 2020, 22:57:48 UTC, committed by GitHub on 23 April 2020, 22:57:48 UTC
1 parent 5ae9eb8
Raw File
01-hello.jl
using MPI
MPI.Init()

comm = MPI.COMM_WORLD
print("Hello world, I am rank $(MPI.Comm_rank(comm)) of $(MPI.Comm_size(comm))\n")
MPI.Barrier(comm)
back to top