aboutsummaryrefslogtreecommitdiff
path: root/src/include/pGH.h
diff options
context:
space:
mode:
authoreschnett <eschnett@b61c5cb5-eaca-4651-9a7a-d64986f99364>2012-07-04 01:29:14 +0000
committereschnett <eschnett@b61c5cb5-eaca-4651-9a7a-d64986f99364>2012-07-04 01:29:14 +0000
commitc438704e6d1d796f42f78cd57917c60bd0e951fe (patch)
tree7444e4b0b01dbb171683e6197fd00e66b47e85b4 /src/include/pGH.h
parentdecf9c65e304089e6bc0c0c32dc5998ae6329b6b (diff)
Introduce cctk_ash, retire cctk_lssh
Introduce cctk_ash, describing the process-local array shape that has been allocated. This may be larger than cctk_lsh, the process-local shape that should be used. Retire cctk_lssh and related infrastructure to handle staggered grid functions. git-svn-id: http://svn.cactuscode.org/arrangements/CactusPUGH/PUGH/trunk@515 b61c5cb5-eaca-4651-9a7a-d64986f99364
Diffstat (limited to 'src/include/pGH.h')
-rw-r--r--src/include/pGH.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/include/pGH.h b/src/include/pGH.h
index f21db09..d8ae113 100644
--- a/src/include/pGH.h
+++ b/src/include/pGH.h
@@ -61,19 +61,19 @@ typedef struct PGH
#ifdef PUGH_WITH_DERIVED_DATATYPES
/* Derived data types for communication */
- MPI_Datatype send_char_dt [PUGH_NSTAGGER][6];
- MPI_Datatype recv_char_dt [PUGH_NSTAGGER][6];
- MPI_Datatype send_int_dt [PUGH_NSTAGGER][6];
- MPI_Datatype recv_int_dt [PUGH_NSTAGGER][6];
- MPI_Datatype send_real_dt [PUGH_NSTAGGER][6];
- MPI_Datatype recv_real_dt [PUGH_NSTAGGER][6];
- MPI_Datatype send_complex_dt [PUGH_NSTAGGER][6];
- MPI_Datatype recv_complex_dt [PUGH_NSTAGGER][6];
+ MPI_Datatype send_char_dt [6];
+ MPI_Datatype recv_char_dt [6];
+ MPI_Datatype send_int_dt [6];
+ MPI_Datatype recv_int_dt [6];
+ MPI_Datatype send_real_dt [6];
+ MPI_Datatype recv_real_dt [6];
+ MPI_Datatype send_complex_dt [6];
+ MPI_Datatype recv_complex_dt [6];
#endif
#endif
/* Used for all grid functions */
- pGExtras **GFExtras; /* [dim] stagger ? */
+ pGExtras **GFExtras; /* [dim] */
pConnectivity **Connectivity; /* [dim] */
char *identity_string; /* identifier for this pGH */