├── .devcontainer └── devcontainer.json ├── README.md ├── allgather.py ├── alltoall.py ├── bcast.py ├── environment.yml ├── gather.py ├── helloworld.cpp ├── helloworld.f90 ├── helloworld.py ├── matvec.py ├── ping.py ├── ping_array.py ├── ping_array2D.py ├── pingpong.py ├── reduce.py ├── ring.py ├── scatter.py └── simpz.py /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikaem/mpi-examples/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikaem/mpi-examples/HEAD/README.md -------------------------------------------------------------------------------- /allgather.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikaem/mpi-examples/HEAD/allgather.py -------------------------------------------------------------------------------- /alltoall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikaem/mpi-examples/HEAD/alltoall.py -------------------------------------------------------------------------------- /bcast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikaem/mpi-examples/HEAD/bcast.py -------------------------------------------------------------------------------- /environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikaem/mpi-examples/HEAD/environment.yml -------------------------------------------------------------------------------- /gather.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikaem/mpi-examples/HEAD/gather.py -------------------------------------------------------------------------------- /helloworld.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikaem/mpi-examples/HEAD/helloworld.cpp -------------------------------------------------------------------------------- /helloworld.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikaem/mpi-examples/HEAD/helloworld.f90 -------------------------------------------------------------------------------- /helloworld.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikaem/mpi-examples/HEAD/helloworld.py -------------------------------------------------------------------------------- /matvec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikaem/mpi-examples/HEAD/matvec.py -------------------------------------------------------------------------------- /ping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikaem/mpi-examples/HEAD/ping.py -------------------------------------------------------------------------------- /ping_array.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikaem/mpi-examples/HEAD/ping_array.py -------------------------------------------------------------------------------- /ping_array2D.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikaem/mpi-examples/HEAD/ping_array2D.py -------------------------------------------------------------------------------- /pingpong.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikaem/mpi-examples/HEAD/pingpong.py -------------------------------------------------------------------------------- /reduce.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikaem/mpi-examples/HEAD/reduce.py -------------------------------------------------------------------------------- /ring.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikaem/mpi-examples/HEAD/ring.py -------------------------------------------------------------------------------- /scatter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikaem/mpi-examples/HEAD/scatter.py -------------------------------------------------------------------------------- /simpz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikaem/mpi-examples/HEAD/simpz.py --------------------------------------------------------------------------------