/usr/include/liggghts/cfd_datacoupling_mpi.h is in libliggghts-dev 2.3.8-1build1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 | /* ----------------------------------------------------------------------
LIGGGHTS - LAMMPS Improved for General Granular and Granular Heat
Transfer Simulations
LIGGGHTS is part of the CFDEMproject
www.liggghts.com | www.cfdem.com
Christoph Kloss, christoph.kloss@cfdem.com
Copyright 2009-2012 JKU Linz
Copyright 2012- DCS Computing GmbH, Linz
LIGGGHTS is based on LAMMPS
LAMMPS - Large-scale Atomic/Molecular Massively Parallel Simulator
http://lammps.sandia.gov, Sandia National Laboratories
Steve Plimpton, sjplimp@sandia.gov
This software is distributed under the GNU General Public License.
See the README file in the top-level directory.
------------------------------------------------------------------------- */
#ifdef CFD_DATACOUPLING_CLASS
CfdDataCouplingStyle(mpi,CfdDatacouplingMPI)
#else
#ifndef LMP_CFD_DATACOUPLING_MPI_H
#define LMP_CFD_DATACOUPLING_MPI_H
#include "cfd_datacoupling.h"
#include "multisphere.h"
#include "error.h"
#include "mpi.h"
namespace LAMMPS_NS {
class CfdDatacouplingMPI : public CfdDatacoupling {
public:
CfdDatacouplingMPI(class LAMMPS *, int,int, char **,class FixCfdCoupling*);
~CfdDatacouplingMPI();
void exchange();
void pull(char *,char *,void *&,char *);
void push(char *,char *,void *&,char *);
template <typename T> void pull_mpi(char *,char *,void *&);
template <typename T> void push_mpi(char *,char *,void *&);
virtual bool error_push()
{ return false;}
void allocate_external(int **&data, int len2,int len1, int initvalue);
void allocate_external(int **&data, int len2,char *keyword,int initvalue);
void allocate_external(double **&data, int len2,int len1, double initvalue);
void allocate_external(double **&data, int len2,char *keyword,double initvalue);
private:
template <typename T> T* check_grow(int len);
template <typename T> MPI_Datatype mpi_type_dc();
// 1D helper array needed to allreduce the quantities
int len_allred_double;
double *allred_double;
int len_allred_int;
int *allred_int;
};
/* ---------------------------------------------------------------------- */
template <typename T>
void CfdDatacouplingMPI::pull_mpi(char *name,char *type,void *&from)
{
int len1 = -1, len2 = -1, m;
// get reference where to write the data
void * to = find_pull_property(name,type,len1,len2);
if (atom->nlocal && (!to || len1 < 0 || len2 < 0))
{
if(screen) fprintf(screen,"LIGGGHTS could not find property %s to write data from calling program to.\n",name);
lmp->error->one(FLERR,"This is fatal");
}
// return if no data to transmit
if(len1*len2 < 1) return;
// check memory allocation
T* allred = check_grow<T>(len1*len2);
// zeroize before using allreduce
vectorZeroizeN(allred,len1*len2);
// perform allreduce on incoming data
T **from_t = (T**)from;
MPI_Allreduce(&(from_t[0][0]),&(allred[0]),len1*len2,mpi_type_dc<T>(),MPI_SUM,world);
// copy data - loops over max # global atoms, bodies
if(strcmp(type,"scalar-atom") == 0)
{
T *to_t = (T*) to;
for (int i = 0; i < len1; i++)
if ((m = atom->map(i+1)) >= 0)
to_t[m] = allred[i];
}
else if(strcmp(type,"vector-atom") == 0)
{
T **to_t = (T**) to;
for (int i = 0; i < len1; i++)
if ((m = atom->map(i+1)) >= 0)
for (int j = 0; j < len2; j++)
to_t[m][j] = allred[i*len2 + j];
}
else if(strcmp(type,"scalar-multisphere") == 0)
{
T *to_t = (T*) to;
if(!ms_data_)
error->one(FLERR,"Transferring a multisphere property from/to LIGGGHTS requires a fix multisphere");
for (int i = 0; i < len1; i++)
if ((m = ms_data_->map(i+1)) >= 0)
to_t[m] = allred[i];
}
else if(strcmp(type,"vector-multisphere") == 0)
{
T **to_t = (T**) to;
if(!ms_data_)
error->one(FLERR,"Transferring a multisphere property from/to LIGGGHTS requires a fix multisphere");
for (int i = 0; i < len1; i++)
if ((m = ms_data_->map(i+1)) >= 0)
for (int j = 0; j < len2; j++)
to_t[m][j] = allred[i*len2 + j];
}
else if(strcmp(type,"scalar-global") == 0 || strcmp(type,"vector-global") == 0 || strcmp(type,"matrix-global") == 0)
{
T **to_t = (T**) to;
for (int i = 0; i < len1; i++)
for (int j = 0; j < len2; j++)
to_t[i][j] = allred[i*len2 + j];
}
else error->one(FLERR,"Illegal data type in CfdDatacouplingMPI::pull");
}
/* ---------------------------------------------------------------------- */
template <typename T>
void CfdDatacouplingMPI::push_mpi(char *name,char *type,void *&to)
{
int len1 = -1, len2 = -1, id;
int *tag = atom->tag;
int nlocal = atom->nlocal;
int nbodies = 0;
if(ms_data_) nbodies = ms_data_->n_body();
// get reference where to write the data
void * from = find_push_property(name,type,len1,len2);
if (atom->nlocal && (!from || len1 < 0 || len2 < 0))
{
if(screen) fprintf(screen,"LIGGGHTS could not find property %s to write data from calling program to.\n",name);
lmp->error->one(FLERR,"This is fatal");
}
// return if no data to transmit
if(len1*len2 < 1) return;
// check memory allocation
T * allred = check_grow<T>(len1*len2);
// zeroize before using allreduce
vectorZeroizeN(allred,len1*len2);
// copy data - loop local # atoms, bodies
if(strcmp(type,"scalar-atom") == 0)
{
T *from_t = (T*) from;
for (int i = 0; i < nlocal; i++)
{
id = tag[i];
allred[id-1] = from_t[i];
}
}
else if(strcmp(type,"vector-atom") == 0)
{
T **from_t = (T**) from;
for (int i = 0; i < nlocal; i++)
{
id = tag[i];
for (int j = 0; j < len2; j++)
allred[(id-1)*len2 + j] = from_t[i][j];
}
}
else if(strcmp(type,"scalar-multisphere") == 0)
{
T *from_t = (T*) from;
if(!ms_data_)
error->one(FLERR,"Transferring a multisphere property from/to LIGGGHTS requires a fix multisphere");
for (int i = 0; i < nbodies; i++) // loops over # local bodies
{
id = ms_data_->tag(i);
allred[id-1] = from_t[i];
}
}
else if(strcmp(type,"vector-multisphere") == 0)
{
T **from_t = (T**) from;
if(!ms_data_)
error->one(FLERR,"Transferring a multisphere property from/to LIGGGHTS requires a fix multisphere");
for (int i = 0; i < nbodies; i++) // loops over # local bodies
{
id = ms_data_->tag(i);
for (int j = 0; j < len2; j++)
{
allred[(id-1)*len2 + j] = from_t[i][j];
}
}
}
else if(strcmp(type,"scalar-global") == 0 || strcmp(type,"vector-global") == 0 || strcmp(type,"matrix-global") == 0)
{
T **from_t = (T**) from;
for (int i = 0; i < len1; i++)
for (int j = 0; j < len2; j++)
allred[i*len2 + j] = from_t[i][j];
}
else error->one(FLERR,"Illegal data type in CfdDatacouplingMPI::pull");
// perform allreduce on outgoing data
T **to_t = (T**)to;
MPI_Allreduce(&(allred[0]),&(to_t[0][0]),len1*len2,mpi_type_dc<T>(),MPI_SUM,world);
}
/* ---------------------------------------------------------------------- */
template<typename T>
inline MPI_Datatype CfdDatacouplingMPI::mpi_type_dc()
{
error->all(FLERR,"Illegal call to mpi_type_dc(), valid types are int and double");
return 0;
}
template<>
inline MPI_Datatype CfdDatacouplingMPI::mpi_type_dc<double>()
{
return MPI_DOUBLE;
}
template<>
inline MPI_Datatype CfdDatacouplingMPI::mpi_type_dc<int>()
{
return MPI_INT;
}
/* ---------------------------------------------------------------------- */
template <typename T>
T* CfdDatacouplingMPI::check_grow(int len)
{
error->all(FLERR,"Illegal call to template <typename T> T* check_grow(int len)");
return NULL;
}
template <>
inline double* CfdDatacouplingMPI::check_grow<double>(int len)
{
while(len > len_allred_double)
len_allred_double += 10000;
allred_double = (double*) memory->srealloc(allred_double,len_allred_double*sizeof(double),"fix_cfd_coupling:allred_double");
vectorZeroizeN(allred_double,len_allred_double);
return allred_double;
}
template <>
inline int* CfdDatacouplingMPI::check_grow<int>(int len)
{
while(len > len_allred_int)
len_allred_int += 10000;
allred_int = (int*) memory->srealloc(allred_int,len_allred_int*sizeof(int),"fix_cfd_coupling:allred_int");
vectorZeroizeN(allred_int,len_allred_int);
return allred_int;
}
}
#endif
#endif
|