File: test_mpi4py.py

package info (click to toggle)
elpa 2022.11.001-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 33,636 kB
  • sloc: f90: 61,114; ansic: 39,478; sh: 4,795; cpp: 4,291; makefile: 923; asm: 834; python: 635; perl: 141
file content (9 lines) | stat: -rw-r--r-- 166 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
def test_import():
    from mpi4py import MPI
    comm = MPI.COMM_WORLD


def test_barrier():
    from mpi4py import MPI
    comm = MPI.COMM_WORLD
    comm.Barrier()