Ice Sheet System Model  4.18
Code documentation
Static Public Member Functions | Static Private Attributes
IssmComm Class Reference

#include <IssmComm.h>

Static Public Member Functions

static void SetComm (ISSM_MPI_Comm incomm)
 
static void SetComm (void)
 
static ISSM_MPI_Comm GetComm (void)
 
static int GetRank (void)
 
static int GetSize (void)
 

Static Private Attributes

static ISSM_MPI_Comm comm
 
static bool parallel
 

Detailed Description

Definition at line 20 of file IssmComm.h.

Member Function Documentation

◆ SetComm() [1/2]

void IssmComm::SetComm ( ISSM_MPI_Comm  incomm)
static

Definition at line 15 of file IssmComm.cpp.

15  { /*{{{*/
16 
17  /*A comm is provided, we are running in parallel (this is not a module)*/
18  parallel = true;
19  comm = incomm;
20 
21 }/*}}}*/

◆ SetComm() [2/2]

void IssmComm::SetComm ( void  )
static

Definition at line 22 of file IssmComm.cpp.

22  { /*{{{*/
23 
24  /*no comm provided, This is a matlab/python module*/
25  parallel = false;
26 
27  /*No need to initialise comm*/
28 
29 }/*}}}*/

◆ GetComm()

ISSM_MPI_Comm IssmComm::GetComm ( void  )
static

Definition at line 30 of file IssmComm.cpp.

30  { /*{{{*/
31  if(!parallel) _error_("Cannot return comm in serial mode");
32  return comm;
33 }/*}}}*/

◆ GetRank()

int IssmComm::GetRank ( void  )
static

Definition at line 34 of file IssmComm.cpp.

34  { /*{{{*/
35 
36  int my_rank = 0;
37 
38  /*for matlab and python modules*/
39  if(!parallel) return my_rank;
40 
41  ISSM_MPI_Comm_rank(comm,&my_rank);
42 
43  return my_rank;
44 
45 }/*}}}*/

◆ GetSize()

int IssmComm::GetSize ( void  )
static

Definition at line 46 of file IssmComm.cpp.

46  { /*{{{*/
47 
48  int size = 1;
49 
50  /*for matlab and python modules*/
51  if(!parallel) return size;
52 
53  ISSM_MPI_Comm_size(comm,&size);
54 
55  return size;
56 
57 }/*}}}*/

Field Documentation

◆ comm

ISSM_MPI_Comm IssmComm::comm
staticprivate

Definition at line 23 of file IssmComm.h.

◆ parallel

bool IssmComm::parallel
staticprivate

Definition at line 24 of file IssmComm.h.


The documentation for this class was generated from the following files:
IssmComm::comm
static ISSM_MPI_Comm comm
Definition: IssmComm.h:23
ISSM_MPI_Comm_rank
int ISSM_MPI_Comm_rank(ISSM_MPI_Comm comm, int *rank)
Definition: issmmpi.cpp:198
IssmComm::parallel
static bool parallel
Definition: IssmComm.h:24
_error_
#define _error_(StreamArgs)
Definition: exceptions.h:49
ISSM_MPI_Comm_size
int ISSM_MPI_Comm_size(ISSM_MPI_Comm comm, int *size)
Definition: issmmpi.cpp:209