File: comex_impl.h

package info (click to toggle)
ga 5.9.2-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 18,472 kB
  • sloc: ansic: 192,963; fortran: 53,761; f90: 11,218; cpp: 5,784; makefile: 2,248; sh: 1,945; python: 1,734; perl: 534; csh: 134; asm: 106
file content (14 lines) | stat: -rw-r--r-- 205 bytes parent folder | download | duplicates (9)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef COMEX_IMPL_H_
#define COMEX_IMPL_H_

#include <mpi.h>

typedef struct {
    MPI_Comm world_comm;
    int rank;
    int size;
} local_state;

extern local_state l_state;

#endif /* COMEX_IMPL_H_ */