source: branches/publications/ORCHIDEE_gmd-2018-57/src_parallel/tools_para.f90 @ 6145

Last change on this file since 6145 was 1925, checked in by josefine.ghattas, 10 years ago
  • xios : adapted for use with OpenMP (only master thread do call to xios), added coherence check between cpp key XIOS and run time flag
  • mod_orchidee_para : moved declaration part into mod_orchidee_para_var
  • simplifications in the use of modules in src_parallel : only use mod_orchidee_para_var if this is sufficient
  • small corrections for OpenMP
  • Property svn:keywords set to HeadURL Date Author Revision
File size: 352 bytes
Line 
1! Obsolete parallel tools : Barrier
2
3!-
4!< $HeadURL$
5!< $Date$
6!< $Author$
7!< $Revision$
8!-
9
10MODULE tools_para
11!-
12  USE mod_orchidee_para_var, ONLY : MPI_COMM_ORCH
13!-
14#include "src_parallel.h"
15!-
16CONTAINS
17
18  SUBROUTINE barrier_para()
19#ifdef CPP_PARA
20    CALL MPI_BARRIER(MPI_COMM_ORCH,ierr)
21#endif
22  END SUBROUTINE barrier_para
23
24END MODULE tools_para
Note: See TracBrowser for help on using the repository browser.