The TELEMAC-MASCARET system  trunk
p_imin.F
Go to the documentation of this file.
1 ! ***********************
2  INTEGER FUNCTION p_imin
3 ! ***********************
4 !
5  &(mypart)
6 !
7 !***********************************************************************
8 ! PARALLEL V6P3 21/08/2010
9 !***********************************************************************
10 !
11 !brief MINIMUM VALUE FROM ALL THE PROCESSORS.
12 !
13 !history RAINER JOHANNI (SGI MUNICH)
14 !+ **/10/1999
15 !+
16 !+ ADAPTED FOR MPI
17 !
18 !history J.A. JANKOWSKI (BAW KARLSRUHE)
19 !+ 28/12/1999
20 !+
21 !+ RELEASE 5.0 MODIFIED
22 !
23 !history J-M HERVOUET (LNHE)
24 !+ 10/06/2005
25 !+ V5P9
26 !+
27 !
28 !history N.DURAND (HRW), S.E.BOURBAN (HRW)
29 !+ 13/07/2010
30 !+ V6P0
31 !+ Translation of French comments within the FORTRAN sources into
32 !+ English comments
33 !
34 !history N.DURAND (HRW), S.E.BOURBAN (HRW)
35 !+ 21/08/2010
36 !+ V6P0
37 !+ Creation of DOXYGEN tags for automated documentation and
38 !+ cross-referencing of the FORTRAN sources
39 !
40 !~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
41 !| MYPART |-->| SEND BUFFER
42 !~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
43 !
46  IMPLICIT NONE
47 !
48 !+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
49 !
50  INTEGER, INTENT(IN) :: MYPART
51 !
52 !+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
53 !
54 #if defined HAVE_MPI
55  INTEGER IER
56 !
57 !-----------------------------------------------------------------------
58 !
59  CALL mpi_allreduce(mypart,p_imin,1,mpi_integer,mpi_min,
60  & comm,ier)
61 !
62  IF(ier.NE.0) THEN
63  WRITE(lu,*) 'P_IMIN: ERROR IN MPI_ALLREDUCE'
64  WRITE(lu,*) 'MPI ERROR ',ier
65  CALL plante(1)
66  stop
67  ENDIF
68  RETURN
69 #else
70  WRITE(lu,*) 'CALL OF P_IMIN IN ITS VOID VERSION'
71 !
72  p_imin=mypart
73 !
74 #endif
75 !
76 !-----------------------------------------------------------------------
77 !
78  END
integer, parameter mpi_integer
integer function p_imin(MYPART)
Definition: p_imin.F:7