From c438704e6d1d796f42f78cd57917c60bd0e951fe Mon Sep 17 00:00:00 2001 From: eschnett Date: Wed, 4 Jul 2012 01:29:14 +0000 Subject: 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 --- src/include/pGH.h | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) (limited to 'src/include/pGH.h') 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 */ -- cgit v1.2.3