source: palm/trunk/SOURCE/pmc_handle_communicator_mod.f90 @ 1856

Last change on this file since 1856 was 1851, checked in by maronga, 8 years ago

last commit documented

  • Property svn:keywords set to Id
File size: 16.8 KB
Line 
1 MODULE PMC_handle_communicator
2
3!--------------------------------------------------------------------------------!
4! This file is part of PALM.
5!
6! PALM is free software: you can redistribute it and/or modify it under the terms
7! of the GNU General Public License as published by the Free Software Foundation,
8! either version 3 of the License, or (at your option) any later version.
9!
10! PALM is distributed in the hope that it will be useful, but WITHOUT ANY
11! WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
12! A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
13!
14! You should have received a copy of the GNU General Public License along with
15! PALM. If not, see <http://www.gnu.org/licenses/>.
16!
17! Copyright 1997-2016 Leibniz Universitaet Hannover
18!--------------------------------------------------------------------------------!
19!
20! Current revisions:
21! ------------------
22!
23!
24! Former revisions:
25! -----------------
26! $Id: pmc_handle_communicator_mod.f90 1851 2016-04-08 13:32:50Z maronga $
27!
28! 1850 2016-04-08 13:29:27Z maronga
29! Module renamed
30!
31!
32! 1808 2016-04-05 19:44:00Z raasch
33! MPI module used by default on all machines
34!
35! 1797 2016-03-21 16:50:28Z raasch
36! introduction of different datatransfer modes,
37! export of comm_world_nesting
38!
39! 1791 2016-03-11 10:41:25Z raasch
40! m_nrofcpl renamed m_ncpl,
41! pmc_get_local_model_info renamed pmc_get_model_info, some keywords also
42! renamed and some added,
43! debug write-statements commented out
44!
45! 1786 2016-03-08 05:49:27Z raasch
46! Bugfix: nesting_mode is broadcast now
47!
48! 1779 2016-03-03 08:01:28Z raasch
49! only the total number of PEs is given in the nestpar-NAMELIST,
50! additional comments included
51!
52! 1764 2016-02-28 12:45:19Z raasch
53! pmc_layout type: comm_cpl and comm_parent removed, character "name" moved at
54! the beginning of the variable list,
55! domain layout is read with new NAMELIST nestpar from standard file PARIN,
56! MPI-datatype REAL8 replaced by REAL, kind=8 replaced by wp,
57! variable domain_layouts instead of m_couplers introduced for this NAMELIST,
58! general format changed to PALM style
59!
60! 1762 2016-02-25 12:31:13Z hellstea
61! Initial revision by K. Ketelsen
62!
63! Description:
64! ------------
65! Handle MPI communicator in PALM model coupler
66!------------------------------------------------------------------------------!
67
68#if defined( __parallel )
69    USE kinds
70
71#if defined( __mpifh )
72    INCLUDE "mpif.h"
73#else
74    USE MPI
75#endif
76
77   USE pmc_general,                                                            &
78       ONLY: pmc_status_ok, pmc_status_error, pmc_max_modell
79
80   IMPLICIT NONE
81
82   TYPE pmc_layout
83
84      CHARACTER(len=32) ::  name
85
86      INTEGER  ::  id
87      INTEGER  ::  parent_id
88      INTEGER  ::  npe_total
89
90      REAL(wp) ::  lower_left_x
91      REAL(wp) ::  lower_left_y
92
93   END TYPE pmc_layout
94
95   PUBLIC  pmc_status_ok, pmc_status_error
96
97   INTEGER, PARAMETER, PUBLIC ::  pmc_error_npes          = 1  ! illegal number of PEs
98   INTEGER, PARAMETER, PUBLIC ::  pmc_namelist_error      = 2  ! error(s) in nestpar namelist
99   INTEGER, PARAMETER, PUBLIC ::  pmc_no_namelist_found   = 3  ! No couple layout file found
100
101   ! Coupler Setup
102
103   INTEGER                                    :: m_world_comm !global nesting communicator
104   INTEGER                                    :: m_my_CPL_id  !Coupler id of this model
105   INTEGER                                    :: m_Parent_id  !Coupler id of parent of this model
106   INTEGER                                    :: m_ncpl       !Number of Couplers in layout file
107
108   TYPE(PMC_layout),DIMENSION(PMC_MAX_MODELL) :: m_couplers   !Information of all couplers
109
110   ! MPI settings
111
112   INTEGER,PUBLIC                    :: m_model_comm          !Communicator of this model
113   INTEGER,PUBLIC                    :: m_to_server_comm      !Communicator to the server
114   INTEGER,DIMENSION(PMC_MAX_MODELL) :: m_to_client_comm      !Communicator to the client(s)
115   INTEGER,PUBLIC                    :: m_world_rank
116   INTEGER                           :: m_world_npes
117   INTEGER,PUBLIC                    :: m_model_rank
118   INTEGER,PUBLIC                    :: m_model_npes
119   INTEGER                           :: m_server_remote_size  !Number of Server PE's
120
121   PUBLIC m_to_client_comm
122
123   !Indicates this PE is server for Cleint NR
124
125   INTEGER,DIMENSION(:),POINTER,PUBLIC :: PMC_Server_for_Client
126
127   INTERFACE pmc_is_rootmodel
128      MODULE PROCEDURE pmc_is_rootmodel
129   END INTERFACE pmc_is_rootmodel
130
131   INTERFACE pmc_get_model_info
132      MODULE PROCEDURE pmc_get_model_info
133   END INTERFACE pmc_get_model_info
134
135   PUBLIC pmc_get_model_info, pmc_init_model, pmc_is_rootmodel
136
137 CONTAINS
138
139   SUBROUTINE pmc_init_model( comm, nesting_datatransfer_mode, nesting_mode,   &
140                              pmc_status )
141
142      USE control_parameters,                                                  &
143          ONLY:  message_string
144
145      USE pegrid,                                                              &
146          ONLY:  myid
147
148      IMPLICIT NONE
149
150      CHARACTER(LEN=7), INTENT(OUT) ::  nesting_mode
151      CHARACTER(LEN=7), INTENT(OUT) ::  nesting_datatransfer_mode
152
153      INTEGER, INTENT(OUT)                ::  comm
154      INTEGER, INTENT(OUT)                ::  pmc_status
155
156      INTEGER                             ::  i, ierr, istat
157      INTEGER,DIMENSION(pmc_max_modell+1) ::  start_pe
158      INTEGER                             ::  m_my_cpl_rank
159      INTEGER                             ::  tag, clientcount
160      INTEGER,DIMENSION(pmc_max_modell)   ::  activeserver  ! I am active server for this client ID
161
162      pmc_status   = pmc_status_ok
163      comm         = -1
164      m_world_comm = MPI_COMM_WORLD
165      m_my_cpl_id  = -1
166      clientcount  =  0
167      activeserver = -1
168      start_pe(:)  =  0
169
170      CALL  MPI_COMM_RANK( MPI_COMM_WORLD, m_world_rank, istat )
171      CALL  MPI_COMM_SIZE( MPI_COMM_WORLD, m_world_npes, istat )
172!
173!--   Only PE 0 of root model reads
174      IF ( m_world_rank == 0 )  THEN
175
176         CALL read_coupling_layout( nesting_datatransfer_mode, nesting_mode,   &
177                                    pmc_status )
178
179         IF ( pmc_status /= pmc_no_namelist_found  .AND.                       &
180              pmc_status /= pmc_namelist_error )                               &
181         THEN
182!
183!--         Calculate start PE of every model
184            start_pe(1) = 0
185            DO  i = 2, m_ncpl+1
186               start_pe(i) = start_pe(i-1) + m_couplers(i-1)%npe_total
187            ENDDO
188
189!
190!--         The number of cores provided with the run must be the same as the
191!--         total sum of cores required by all nest domains
192            IF ( start_pe(m_ncpl+1) /= m_world_npes )  THEN
193               WRITE ( message_string, '(A,I6,A,I6,A)' )                       &
194                               'nesting-setup requires more MPI procs (',      &
195                               start_pe(m_ncpl+1), ') than provided (',        &
196                               m_world_npes,')'
197               CALL message( 'pmc_init_model', 'PA0229', 3, 2, 0, 6, 0 )
198            ENDIF
199
200         ENDIF
201
202      ENDIF
203!
204!--   Broadcast the read status. This synchronises all other PEs with PE 0 of
205!--   the root model. Without synchronisation, they would not behave in the
206!--   correct way (e.g. they would not return in case of a missing NAMELIST)
207      CALL MPI_BCAST( pmc_status, 1, MPI_INTEGER, 0, MPI_COMM_WORLD, istat )
208
209      IF ( pmc_status == pmc_no_namelist_found )  THEN
210!
211!--      Not a nested run; return the MPI_WORLD communicator
212         comm = MPI_COMM_WORLD
213         RETURN
214
215      ELSEIF ( pmc_status == pmc_namelist_error )  THEN
216!
217!--      Only the root model gives the error message. Others are aborted by the
218!--      message-routine with MPI_ABORT. Must be done this way since myid and
219!--      comm2d have not yet been assigned at this point.
220         IF ( m_world_rank == 0 )  THEN
221            message_string = 'errors in \$nestpar'
222            CALL message( 'pmc_init_model', 'PA0223', 3, 2, 0, 6, 0 )
223         ENDIF
224
225      ENDIF
226
227      CALL MPI_BCAST( m_ncpl,          1, MPI_INTEGER, 0, MPI_COMM_WORLD, istat)
228      CALL MPI_BCAST( start_pe, m_ncpl+1, MPI_INTEGER, 0, MPI_COMM_WORLD, istat)
229
230!
231!--   Broadcast coupling layout
232      DO  i = 1, m_ncpl
233         CALL MPI_BCAST( m_couplers(i)%name, LEN( m_couplers(i)%name ), MPI_CHARACTER, 0, MPI_COMM_WORLD, istat )
234         CALL MPI_BCAST( m_couplers(i)%id,           1, MPI_INTEGER, 0, MPI_COMM_WORLD, istat )
235         CALL MPI_BCAST( m_couplers(i)%Parent_id,    1, MPI_INTEGER, 0, MPI_COMM_WORLD, istat )
236         CALL MPI_BCAST( m_couplers(i)%npe_total,    1, MPI_INTEGER, 0, MPI_COMM_WORLD, istat )
237         CALL MPI_BCAST( m_couplers(i)%lower_left_x, 1, MPI_REAL,    0, MPI_COMM_WORLD, istat )
238         CALL MPI_BCAST( m_couplers(i)%lower_left_y, 1, MPI_REAL,    0, MPI_COMM_WORLD, istat )
239!--      TO_DO: the next two calls can and should probably moved outside this loop
240         CALL MPI_BCAST( nesting_mode, LEN( nesting_mode ), MPI_CHARACTER, 0, MPI_COMM_WORLD, istat )
241         CALL MPI_BCAST( nesting_datatransfer_mode, LEN(nesting_datatransfer_mode), MPI_CHARACTER, 0, MPI_COMM_WORLD, istat )
242      ENDDO
243
244!
245!--   Assign global MPI processes to individual models by setting the couple id
246      DO  i = 1, m_ncpl
247         IF ( m_world_rank >= start_pe(i)  .AND.  m_world_rank < start_pe(i+1) ) &
248         THEN
249            m_my_cpl_id = i
250            EXIT
251         ENDIF
252      ENDDO
253      m_my_cpl_rank = m_world_rank - start_pe(i)
254
255!
256!--   MPI_COMM_WORLD is the communicator for ALL models (MPI-1 approach).
257!--   The communictors for the individual models as created by MPI_COMM_SPLIT.
258!--   The color of the model is represented by the coupler id
259      CALL MPI_COMM_SPLIT( MPI_COMM_WORLD, m_my_cpl_id, m_my_cpl_rank, comm,   &
260                           istat )
261!
262!--   Get size and rank of the model running on this PE
263      CALL  MPI_COMM_RANK( comm, m_model_rank, istat )
264      CALL  MPI_COMM_SIZE( comm, m_model_npes, istat )
265
266!
267!--   Broadcast (from PE 0) the parent id and id of every model
268      DO  i = 1, m_ncpl
269         CALL MPI_BCAST( m_couplers(i)%parent_id, 1, MPI_INTEGER, 0,           &
270                         MPI_COMM_WORLD, istat )
271         CALL MPI_BCAST( m_couplers(i)%id,        1, MPI_INTEGER, 0,           &
272                         MPI_COMM_WORLD, istat )
273      ENDDO
274
275!
276!--   Save the current model communicator for PMC internal use
277      m_model_comm = comm
278
279!
280!--   Create intercommunicator between server and clients.
281!--   MPI_INTERCOMM_CREATE creates an intercommunicator between 2 groups of
282!--   different colors.
283!--   The grouping was done above with MPI_COMM_SPLIT
284      DO  i = 2, m_ncpl
285
286         IF ( m_couplers(i)%parent_id == m_my_cpl_id )  THEN
287!
288!--         Collect server PEs.
289!--         Every model exept the root model has a parent model which acts as
290!--         server model. Create an intercommunicator to connect current PE to
291!--         all client PEs
292            tag = 500 + i
293            CALL MPI_INTERCOMM_CREATE( comm, 0, MPI_COMM_WORLD, start_pe(i),   &
294                                       tag, m_to_client_comm(i), istat)
295            clientcount = clientcount + 1
296            activeserver(i) = 1
297
298         ELSEIF ( i == m_my_cpl_id)  THEN
299!
300!--         Collect client PEs.
301!--         Every model exept the root model has a paremt model which acts as
302!--         server model. Create an intercommunicator to connect current PE to
303!--         all server PEs
304            tag = 500 + i
305            CALL MPI_INTERCOMM_CREATE( comm, 0, MPI_COMM_WORLD,                &
306                                       start_pe(m_couplers(i)%parent_id),      &
307                                       tag, m_to_server_comm, istat )
308         ENDIF
309
310      ENDDO
311
312!
313!--   If I am server, count the number of clients that I have
314!--   Although this loop is symmetric on all processes, the "activeserver" flag
315!--   is true (==1) on the respective individual PE only.
316      ALLOCATE( pmc_server_for_client(clientcount+1) )
317
318      clientcount = 0
319      DO  i = 2, m_ncpl
320         IF ( activeserver(i) == 1 )  THEN
321            clientcount = clientcount + 1
322            pmc_server_for_client(clientcount) = i
323         ENDIF
324      ENDDO
325!
326!--   Get the size of the server model
327      IF ( m_my_cpl_id > 1 )  THEN
328         CALL MPI_COMM_REMOTE_SIZE( m_to_server_comm, m_server_remote_size,    &
329                                    istat)
330      ELSE
331!
332!--      The root model does not have a server
333         m_server_remote_size = -1             !
334      ENDIF
335!
336!--   Set myid to non-tero value except for the root domain. This is a setting
337!--   for the message routine which is called at the end of pmci_init. That
338!--   routine outputs messages for myid = 0, only. However, myid has not been
339!--   assigened so far, so that all PEs of the root model would output a
340!--   message. To avoid this, set myid to some other value except for PE0 of the
341!--   root domain.
342      IF ( m_world_rank /= 0 )  myid = 1
343
344   END SUBROUTINE PMC_init_model
345
346
347!
348!-- Provide module private variables of the pmc for PALM
349    SUBROUTINE pmc_get_model_info( comm_world_nesting, cpl_id, cpl_name,       &
350                                   cpl_parent_id, lower_left_x, lower_left_y,  &
351                                   ncpl, npe_total, request_for_cpl_id )
352
353      USE kinds
354
355      IMPLICIT NONE
356
357      CHARACTER(LEN=*), INTENT(OUT), OPTIONAL ::  cpl_name
358
359      INTEGER, INTENT(IN), OPTIONAL ::  request_for_cpl_id
360
361      INTEGER, INTENT(OUT), OPTIONAL ::  comm_world_nesting
362      INTEGER, INTENT(OUT), OPTIONAL ::  cpl_id
363      INTEGER, INTENT(OUT), OPTIONAL ::  cpl_parent_id
364      INTEGER, INTENT(OUT), OPTIONAL ::  ncpl
365      INTEGER, INTENT(OUT), OPTIONAL ::  npe_total
366
367      INTEGER ::  requested_cpl_id
368
369      REAL(wp), INTENT(OUT), OPTIONAL ::  lower_left_x
370      REAL(wp), INTENT(OUT), OPTIONAL ::  lower_left_y
371
372!
373!--   Set the requested coupler id
374      IF ( PRESENT( request_for_cpl_id ) )  THEN
375         requested_cpl_id = request_for_cpl_id
376!
377!--      Check for allowed range of values
378         IF ( requested_cpl_id < 1 .OR. requested_cpl_id > m_ncpl )  RETURN
379      ELSE
380         requested_cpl_id = m_my_cpl_id
381      ENDIF
382
383!
384!--   Return the requested information
385      IF ( PRESENT( comm_world_nesting )  )  THEN
386         comm_world_nesting = m_world_comm
387      ENDIF
388      IF ( PRESENT( cpl_id )        )  THEN
389         cpl_id = requested_cpl_id
390      ENDIF
391      IF ( PRESENT( cpl_parent_id ) )  THEN
392         cpl_parent_id = m_couplers(requested_cpl_id)%parent_id
393      ENDIF
394      IF ( PRESENT( cpl_name )      )  THEN
395         cpl_name = m_couplers(requested_cpl_id)%name
396      ENDIF
397      IF ( PRESENT( ncpl )          )  THEN
398         ncpl = m_ncpl
399      ENDIF
400      IF ( PRESENT( npe_total )     )  THEN
401         npe_total = m_couplers(requested_cpl_id)%npe_total
402      ENDIF
403      IF ( PRESENT( lower_left_x )  )  THEN
404         lower_left_x = m_couplers(requested_cpl_id)%lower_left_x
405      ENDIF
406      IF ( PRESENT( lower_left_y )  )  THEN
407         lower_left_y = m_couplers(requested_cpl_id)%lower_left_y
408      ENDIF
409
410   END SUBROUTINE pmc_get_model_info
411
412
413
414   LOGICAL function pmc_is_rootmodel( )
415
416      IMPLICIT NONE
417
418      pmc_is_rootmodel = ( m_my_cpl_id == 1 )
419
420   END FUNCTION pmc_is_rootmodel
421
422
423
424 SUBROUTINE read_coupling_layout( nesting_datatransfer_mode, nesting_mode,     &
425                                  pmc_status )
426
427    IMPLICIT NONE
428
429    CHARACTER(LEN=7), INTENT(INOUT) ::  nesting_mode
430    CHARACTER(LEN=7), INTENT(INOUT) ::  nesting_datatransfer_mode
431
432    INTEGER, INTENT(INOUT) ::  pmc_status
433    INTEGER                ::  i, istat
434
435    TYPE(pmc_layout), DIMENSION(pmc_max_modell) ::  domain_layouts
436
437
438    NAMELIST /nestpar/  domain_layouts, nesting_datatransfer_mode, nesting_mode
439
440!
441!-- Initialize some coupling variables
442    domain_layouts(1:pmc_max_modell)%id = -1
443    m_ncpl =   0
444
445    pmc_status = pmc_status_ok
446
447!
448!-- Open the NAMELIST-file and read the nesting layout
449    CALL check_open( 11 )
450    READ ( 11, nestpar, IOSTAT=istat )
451
452    IF ( istat < 0 )  THEN
453!
454!--    No nestpar-NAMELIST found
455       pmc_status = pmc_no_namelist_found
456!
457!--    Set filepointer to the beginning of the file. Otherwise PE0 will later
458!--    be unable to read the inipar-NAMELIST
459       REWIND ( 11 )
460       RETURN
461
462    ELSEIF ( istat > 0 )  THEN
463!
464!--    Errors in reading nestpar-NAMELIST
465       pmc_status = pmc_namelist_error
466       RETURN
467
468    ENDIF
469
470!
471!-- Output location message
472    CALL location_message( 'initialize communicators for nesting', .FALSE. )
473!
474!-- Assign the layout to the internally used variable
475    m_couplers = domain_layouts
476
477!
478!-- Get the number of nested models given in the nestpar-NAMELIST
479    DO  i = 1, pmc_max_modell
480!
481!--    When id=-1 is found for the first time, the list of domains is finished
482       IF ( m_couplers(i)%id == -1  .OR.  i == pmc_max_modell )  THEN
483          IF ( m_couplers(i)%id == -1 )  THEN
484             m_ncpl = i - 1
485             EXIT
486          ELSE
487             m_ncpl = pmc_max_modell
488          ENDIF
489       ENDIF
490
491    ENDDO
492
493 END SUBROUTINE read_coupling_layout
494
495#endif
496 END MODULE pmc_handle_communicator
Note: See TracBrowser for help on using the repository browser.