SURFEX v8.1
General documentation of Surfex
mpl_module.F90
Go to the documentation of this file.
1 MODULE mpl_module
2 !
3 ! Message Passing Library (MPL)
4 !
5 ! Interface between parallel applications and the
6 ! Message Passing Interface (MPI standard) provided by the computer vendors
7 ! This version requires only MPI release 1.
8 !
9 ! designed and developed by
10 ! Mats Hamrud and David Dent, ECMWF, September 2000
11 !
12 ! all routines which wish to call MPL routines must contain:
13 ! USE MPL_MODULE
14 
16 USE mpl_init_mod
18 USE mpl_send_mod
19 USE mpl_recv_mod
20 USE mpl_wait_mod
23 USE mpl_probe_mod
24 USE mpl_end_mod
26 USE mpl_abort_mod
33 USE mpl_nproc_mod
35 USE mpl_open_mod
36 USE mpl_close_mod
37 USE mpl_read_mod
38 USE mpl_write_mod
45 USE mpl_groups
46 USE mpl_arg_mod
51 
52 END MODULE mpl_module