Bimetric 3+1 toolkit for spherical symmetry
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines
sys/mpiDummyWorld.h
Go to the documentation of this file.
00001 /**
00002  *  @file      mpiDummyWorld.h
00003  *  @brief     A dummy message passing interface (MPI).
00004  *  @author    Mikica Kocic
00005  *  @copyright GNU General Public License (GPLv3).
00006  */
00007 
00008 /** Implements a dummy message passing interface (MPI).
00009  *  To enable the real MPI code, use `mpic++` with `-D_USEMPI`.
00010  *
00011  *  @warning The maximal slicing is not compliant with MPI since the boundary value
00012  *  problem for the slicing differential equation requires access to the whole grid!
00013  */
00014 class DummyMPIWorld
00015 {
00016 public:
00017     void quit( int rc )
00018     {
00019         exit( rc );
00020     }
00021 
00022     int size () const { return 1; } //!< The size of the MPI world
00023     int rank () const { return 0; } //!< Our rank in the MPI world
00024 
00025     bool isFirstInRank () const { return true; }
00026     bool isLastInRank () const { return true; }
00027 
00028     /** Defines a MPI datatype for the ghost chunk, which consists of nGFs blocks
00029      *  where each block size is nGhost Reals, repeating every nTotal strides.
00030      */
00031     void defineGhostChunk( Int nGFs, Int nTotal, Int nGhost ) {}
00032 
00033     /** Exchange the boundary data with the neighboring ranks.
00034      */
00035     bool exchangeBoundaries
00036     (
00037         void* left_ghost,  //!< Where to put the right edge of the left neighbor
00038         void* left_edge,   //!< Pointer to the left edge of our data
00039         void* right_edge,  //!< Pointer to the right edge of our data
00040         void* right_ghost, //!< Where to put the left edge of the right neighbor
00041         bool receiveEdges  //!< If to receive the edges (otherwise just send the ghosts)
00042         )
00043     {
00044         return true;
00045     }
00046 
00047     /** Wait the other ranks to have received our edges.
00048      */
00049     bool waitExchange ()
00050     {
00051         return true;
00052     }
00053 
00054     /** Nonblocking signal to all the ranks that we are quitting integration.
00055      */
00056     void abortExchange( Real* dummyData )
00057     {
00058     }
00059 };
00060 
00061 typedef DummyMPIWorld MPIWorld;