summaryrefslogtreecommitdiff
path: root/src/main/ProcessEnvironment.c
blob: 3da36cef7cb408d432d2e4a8b3e116bb68de4092 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
 /*@@
   @file      ProcessEnvironment.c
   @date      Fri Feb 26 11:20:15 1999
   @author    Tom Goodale
   @desc 
   Checks the environment for various settings, and acts on them.
   @enddesc 
 @@*/

#include <stdio.h>
#include <stdlib.h>

#include "cctk.h"

#ifdef MPI
#include "mpi.h"
#endif

#ifdef MPI
#define CACTUS_MPI_ERROR(xf)  do {int errcode; \
                                    if((errcode = xf) != MPI_SUCCESS)                     \
				    {                                                     \
				      char mpi_error_string[MPI_MAX_ERROR_STRING+1];      \
				      int resultlen;                                      \
				      MPI_Error_string(errcode, mpi_error_string, &resultlen);\
				      fprintf(stderr, "MPI Call %s returned error code %d (%s)\n", \
                                      #xf, errcode, mpi_error_string);                    \
				      fprintf(stderr, "At line %d of file %s\n",                   \
					     __LINE__, __FILE__);                         \
				    }                                                     \
				  } while (0)
#endif

#include "cctk_Flesh.h"

static char *rcsid = "$Header$";

#ifdef MPI
char MPI_Active = 0;
#endif

int ProcessEnvironment(int *argc, char ***argv,tFleshConfig *ConfigData)
{
  
  /* Check if MPI compiled in but choosing not to use MPI. */  

#ifdef MPI
  if(!getenv("CACTUS_NOMPI"))
  {
    MPI_Active = 1;

    CACTUS_MPI_ERROR(MPI_Init(argc, argv));
      
  }
#endif

  return 0;
}