integer fdds_initmpi(node, nodes)
NOTE: you will have to define this function for yourself
because it cannot be defined in fdds.h (because it would try to use the
parallel routines for all codes). So add "integer fdds_initmpi" to any
routine that uses it. Also note that you need the extra,
#include <mpif.h>, include file for any of the mpi
routines.
fdds_initmpix Initialize DDS for MPIX
fdds_initopenmp Initialize DDS for OpenMP
#include <mpif.h>
#include <fdds.h>
integer rank, np, ier
integer fdds_initmpi
ier = fdds_initmpi(rank, np)
Initializes MPI in a DDS application using modules:
use mpi
use dds
integer :: rank, np, ier
ier = fdds_initmpi(rank, np)