Ignore:
Timestamp:
Apr 10, 2012, 1:55:49 PM (14 years ago)
Author:
Julian Iseringhausen <isering@…>
Children:
a40eea
Parents:
d24c2f
Message:

Merge recent changes of the vmg library into ScaFaCos.

Includes a fix for the communication problems on Jugene.

git-svn-id: https://svn.version.fz-juelich.de/scafacos/trunk@1666 5161e1c8-67bf-11de-9fd5-51895aff932f

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/comm/mpi/datatypes_local.hpp

    rd24c2f rac6d04  
    1111class Grid;
    1212
     13namespace Particle
     14{
     15class LinkedCellList;
     16}
     17
    1318namespace MPI
    1419{
     
    1722{
    1823public:
     24  DatatypesLocal(const Grid& grid, const MPI_Comm& comm)
     25  {
     26    InitDatatypesLocal(grid, comm);
     27  }
    1928
    20   DatatypesLocal(const Grid& grid, const MPI_Comm& comm);
     29  DatatypesLocal(const VMG::Particle::LinkedCellList& grid, const MPI_Comm& comm)
     30  {
     31    InitDatatypesLocal(grid, comm);
     32  }
     33
    2134  ~DatatypesLocal() {}
    2235
     
    2942private:
    3043  std::vector<Datatype> halo, nb;
     44
     45  template <class T>
     46  void InitDatatypesLocal(const T& grid, const MPI_Comm& comm);
    3147};
    3248
Note: See TracChangeset for help on using the changeset viewer.