File: parallel_aces.com

package info (click to toggle)
aces3 3.0.6-7
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 82,460 kB
  • sloc: fortran: 225,647; ansic: 20,413; cpp: 4,349; makefile: 953; sh: 137
file content (23 lines) | stat: -rw-r--r-- 592 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#ifndef _PARALLEL_ACES_COM_
#define _PARALLEL_ACES_COM_
c parallel_aces.com : begin

c This common block contains the MPI statistics for each MPI process. The values
c are initialized in the acescore library.

#ifndef NO_EXTERNAL
      external aces_bd_parallel_aces
#endif

#include "parallel_aces.h"

      integer                nprocs, irank, icpuname

      character*(_MPI_MAX_PROCESSOR_NAME) szcpuname

      common /parallel_aces/ nprocs, irank, icpuname,
     &                       szcpuname
      save   /parallel_aces/

c parallel_aces.com : end
#endif /* _PARALLEL_ACES_COM_ */