Merge pull request #2713 from rbberger/collected_small_changes
Collected small changes
This commit is contained in:
@ -69,7 +69,6 @@
|
||||
|
||||
void fft_3d(FFT_DATA *in, FFT_DATA *out, int flag, struct fft_plan_3d *plan)
|
||||
{
|
||||
int i,total,length,offset,num;
|
||||
FFT_SCALAR norm;
|
||||
#if defined(FFT_FFTW3)
|
||||
FFT_SCALAR *out_ptr;
|
||||
@ -99,9 +98,6 @@ void fft_3d(FFT_DATA *in, FFT_DATA *out, int flag, struct fft_plan_3d *plan)
|
||||
|
||||
// 1d FFTs along fast axis
|
||||
|
||||
total = plan->total1;
|
||||
length = plan->length1;
|
||||
|
||||
#if defined(FFT_MKL)
|
||||
if (flag == 1)
|
||||
DftiComputeForward(plan->handle_fast,data);
|
||||
@ -114,11 +110,14 @@ void fft_3d(FFT_DATA *in, FFT_DATA *out, int flag, struct fft_plan_3d *plan)
|
||||
theplan=plan->plan_fast_backward;
|
||||
FFTW_API(execute_dft)(theplan,data,data);
|
||||
#else
|
||||
int total = plan->total1;
|
||||
int length = plan->length1;
|
||||
|
||||
if (flag == 1)
|
||||
for (offset = 0; offset < total; offset += length)
|
||||
for (int offset = 0; offset < total; offset += length)
|
||||
kiss_fft(plan->cfg_fast_forward,&data[offset],&data[offset]);
|
||||
else
|
||||
for (offset = 0; offset < total; offset += length)
|
||||
for (int offset = 0; offset < total; offset += length)
|
||||
kiss_fft(plan->cfg_fast_backward,&data[offset],&data[offset]);
|
||||
#endif
|
||||
|
||||
@ -133,9 +132,6 @@ void fft_3d(FFT_DATA *in, FFT_DATA *out, int flag, struct fft_plan_3d *plan)
|
||||
|
||||
// 1d FFTs along mid axis
|
||||
|
||||
total = plan->total2;
|
||||
length = plan->length2;
|
||||
|
||||
#if defined(FFT_MKL)
|
||||
if (flag == 1)
|
||||
DftiComputeForward(plan->handle_mid,data);
|
||||
@ -148,11 +144,14 @@ void fft_3d(FFT_DATA *in, FFT_DATA *out, int flag, struct fft_plan_3d *plan)
|
||||
theplan=plan->plan_mid_backward;
|
||||
FFTW_API(execute_dft)(theplan,data,data);
|
||||
#else
|
||||
total = plan->total2;
|
||||
length = plan->length2;
|
||||
|
||||
if (flag == 1)
|
||||
for (offset = 0; offset < total; offset += length)
|
||||
for (int offset = 0; offset < total; offset += length)
|
||||
kiss_fft(plan->cfg_mid_forward,&data[offset],&data[offset]);
|
||||
else
|
||||
for (offset = 0; offset < total; offset += length)
|
||||
for (int offset = 0; offset < total; offset += length)
|
||||
kiss_fft(plan->cfg_mid_backward,&data[offset],&data[offset]);
|
||||
#endif
|
||||
|
||||
@ -167,9 +166,6 @@ void fft_3d(FFT_DATA *in, FFT_DATA *out, int flag, struct fft_plan_3d *plan)
|
||||
|
||||
// 1d FFTs along slow axis
|
||||
|
||||
total = plan->total3;
|
||||
length = plan->length3;
|
||||
|
||||
#if defined(FFT_MKL)
|
||||
if (flag == 1)
|
||||
DftiComputeForward(plan->handle_slow,data);
|
||||
@ -182,11 +178,14 @@ void fft_3d(FFT_DATA *in, FFT_DATA *out, int flag, struct fft_plan_3d *plan)
|
||||
theplan=plan->plan_slow_backward;
|
||||
FFTW_API(execute_dft)(theplan,data,data);
|
||||
#else
|
||||
total = plan->total3;
|
||||
length = plan->length3;
|
||||
|
||||
if (flag == 1)
|
||||
for (offset = 0; offset < total; offset += length)
|
||||
for (int offset = 0; offset < total; offset += length)
|
||||
kiss_fft(plan->cfg_slow_forward,&data[offset],&data[offset]);
|
||||
else
|
||||
for (offset = 0; offset < total; offset += length)
|
||||
for (int offset = 0; offset < total; offset += length)
|
||||
kiss_fft(plan->cfg_slow_backward,&data[offset],&data[offset]);
|
||||
#endif
|
||||
|
||||
@ -201,11 +200,11 @@ void fft_3d(FFT_DATA *in, FFT_DATA *out, int flag, struct fft_plan_3d *plan)
|
||||
|
||||
if (flag == -1 && plan->scaled) {
|
||||
norm = plan->norm;
|
||||
num = plan->normnum;
|
||||
const int num = plan->normnum;
|
||||
#if defined(FFT_FFTW3)
|
||||
out_ptr = (FFT_SCALAR *)out;
|
||||
#endif
|
||||
for (i = 0; i < num; i++) {
|
||||
for (int i = 0; i < num; i++) {
|
||||
#if defined(FFT_FFTW3)
|
||||
*(out_ptr++) *= norm;
|
||||
*(out_ptr++) *= norm;
|
||||
|
||||
122
src/atom_vec.cpp
122
src/atom_vec.cpp
@ -71,21 +71,6 @@ AtomVec::AtomVec(LAMMPS *lmp) : Pointers(lmp)
|
||||
default_create = "id type mask image x v";
|
||||
default_data_atom = "";
|
||||
default_data_vel = "";
|
||||
|
||||
// initializations
|
||||
|
||||
init_method(&mgrow);
|
||||
init_method(&mcopy);
|
||||
init_method(&mcomm);
|
||||
init_method(&mcomm_vel);
|
||||
init_method(&mreverse);
|
||||
init_method(&mborder);
|
||||
init_method(&mborder_vel);
|
||||
init_method(&mexchange);
|
||||
init_method(&mrestart);
|
||||
init_method(&mcreate);
|
||||
init_method(&mdata_atom);
|
||||
init_method(&mdata_vel);
|
||||
}
|
||||
|
||||
/* ---------------------------------------------------------------------- */
|
||||
@ -129,19 +114,6 @@ AtomVec::~AtomVec()
|
||||
}
|
||||
}
|
||||
|
||||
destroy_method(&mgrow);
|
||||
destroy_method(&mcopy);
|
||||
destroy_method(&mcomm);
|
||||
destroy_method(&mcomm_vel);
|
||||
destroy_method(&mreverse);
|
||||
destroy_method(&mborder);
|
||||
destroy_method(&mborder_vel);
|
||||
destroy_method(&mexchange);
|
||||
destroy_method(&mrestart);
|
||||
destroy_method(&mcreate);
|
||||
destroy_method(&mdata_atom);
|
||||
destroy_method(&mdata_vel);
|
||||
|
||||
delete [] threads;
|
||||
}
|
||||
|
||||
@ -2395,18 +2367,18 @@ void AtomVec::setup_fields()
|
||||
|
||||
// populate field-based data struct for each method to use
|
||||
|
||||
create_method(ngrow,&mgrow);
|
||||
create_method(ncopy,&mcopy);
|
||||
create_method(ncomm,&mcomm);
|
||||
create_method(ncomm_vel,&mcomm_vel);
|
||||
create_method(nreverse,&mreverse);
|
||||
create_method(nborder,&mborder);
|
||||
create_method(nborder_vel,&mborder_vel);
|
||||
create_method(nexchange,&mexchange);
|
||||
create_method(nrestart,&mrestart);
|
||||
create_method(ncreate,&mcreate);
|
||||
create_method(ndata_atom,&mdata_atom);
|
||||
create_method(ndata_vel,&mdata_vel);
|
||||
init_method(ngrow,&mgrow);
|
||||
init_method(ncopy,&mcopy);
|
||||
init_method(ncomm,&mcomm);
|
||||
init_method(ncomm_vel,&mcomm_vel);
|
||||
init_method(nreverse,&mreverse);
|
||||
init_method(nborder,&mborder);
|
||||
init_method(nborder_vel,&mborder_vel);
|
||||
init_method(nexchange,&mexchange);
|
||||
init_method(nrestart,&mrestart);
|
||||
init_method(ncreate,&mcreate);
|
||||
init_method(ndata_atom,&mdata_atom);
|
||||
init_method(ndata_vel,&mdata_vel);
|
||||
|
||||
// create threads data struct for grow and memory_usage to use
|
||||
|
||||
@ -2480,7 +2452,6 @@ void AtomVec::setup_fields()
|
||||
int AtomVec::process_fields(char *str, const char *default_str, Method *method)
|
||||
{
|
||||
if (str == nullptr) {
|
||||
method->index = nullptr;
|
||||
return 0;
|
||||
}
|
||||
|
||||
@ -2496,17 +2467,19 @@ int AtomVec::process_fields(char *str, const char *default_str, Method *method)
|
||||
Atom::PerAtom *peratom = atom->peratom;
|
||||
int nperatom = atom->nperatom;
|
||||
|
||||
int *index;
|
||||
// allocate memory in method
|
||||
method->resize(nfield);
|
||||
|
||||
std::vector<int> & index = method->index;
|
||||
int match;
|
||||
|
||||
if (nfield) index = new int[nfield];
|
||||
for (int i = 0; i < nfield; i++) {
|
||||
const char * field = words[i].c_str();
|
||||
const std::string & field = words[i];
|
||||
|
||||
// find field in master Atom::peratom list
|
||||
|
||||
for (match = 0; match < nperatom; match++)
|
||||
if (strcmp(field, peratom[match].name) == 0) break;
|
||||
if (field == peratom[match].name) break;
|
||||
if (match == nperatom)
|
||||
error->all(FLERR,fmt::format("Peratom field {} not recognized", field));
|
||||
index[i] = match;
|
||||
@ -2520,38 +2493,19 @@ int AtomVec::process_fields(char *str, const char *default_str, Method *method)
|
||||
// error if field is in default str
|
||||
|
||||
for (match = 0; match < ndef; match++)
|
||||
if (strcmp(field, def_words[match].c_str()) == 0)
|
||||
if (field == def_words[match])
|
||||
error->all(FLERR,fmt::format("Peratom field {} is a default", field));
|
||||
}
|
||||
|
||||
if (nfield) method->index = index;
|
||||
else method->index = nullptr;
|
||||
return nfield;
|
||||
}
|
||||
|
||||
/* ----------------------------------------------------------------------
|
||||
create a method data structs for processing fields
|
||||
init method data structs for processing fields
|
||||
------------------------------------------------------------------------- */
|
||||
|
||||
void AtomVec::create_method(int nfield, Method *method)
|
||||
void AtomVec::init_method(int nfield, Method *method)
|
||||
{
|
||||
if (nfield > 0) {
|
||||
method->pdata = new void*[nfield];
|
||||
method->datatype = new int[nfield];
|
||||
method->cols = new int[nfield];
|
||||
method->maxcols = new int*[nfield];
|
||||
method->collength = new int[nfield];
|
||||
method->plength = new void*[nfield];
|
||||
} else {
|
||||
method->pdata = nullptr;
|
||||
method->datatype = nullptr;
|
||||
method->cols = nullptr;
|
||||
method->maxcols = nullptr;
|
||||
method->collength = nullptr;
|
||||
method->plength = nullptr;
|
||||
return;
|
||||
}
|
||||
|
||||
for (int i = 0; i < nfield; i++) {
|
||||
Atom::PerAtom *field = &atom->peratom[method->index[i]];
|
||||
method->pdata[i] = (void *) field->address;
|
||||
@ -2566,31 +2520,15 @@ void AtomVec::create_method(int nfield, Method *method)
|
||||
}
|
||||
|
||||
/* ----------------------------------------------------------------------
|
||||
free memory in a method data structs
|
||||
Method class members
|
||||
------------------------------------------------------------------------- */
|
||||
|
||||
void AtomVec::init_method(Method *method)
|
||||
{
|
||||
method->pdata = nullptr;
|
||||
method->datatype = nullptr;
|
||||
method->cols = nullptr;
|
||||
method->maxcols = nullptr;
|
||||
method->collength = nullptr;
|
||||
method->plength = nullptr;
|
||||
method->index = nullptr;
|
||||
}
|
||||
|
||||
/* ----------------------------------------------------------------------
|
||||
free memory in a method data structs
|
||||
------------------------------------------------------------------------- */
|
||||
|
||||
void AtomVec::destroy_method(Method *method)
|
||||
{
|
||||
delete [] method->pdata;
|
||||
delete [] method->datatype;
|
||||
delete [] method->cols;
|
||||
delete [] method->maxcols;
|
||||
delete [] method->collength;
|
||||
delete [] method->plength;
|
||||
delete [] method->index;
|
||||
void AtomVec::Method::resize(int nfield) {
|
||||
pdata.resize(nfield);
|
||||
datatype.resize(nfield);
|
||||
cols.resize(nfield);
|
||||
maxcols.resize(nfield);
|
||||
collength.resize(nfield);
|
||||
plength.resize(nfield);
|
||||
index.resize(nfield);
|
||||
}
|
||||
|
||||
@ -191,13 +191,15 @@ class AtomVec : protected Pointers {
|
||||
const char *default_create,*default_data_atom,*default_data_vel;
|
||||
|
||||
struct Method {
|
||||
void **pdata;
|
||||
int *datatype;
|
||||
int *cols;
|
||||
int **maxcols;
|
||||
int *collength;
|
||||
void **plength;
|
||||
int *index;
|
||||
std::vector<void *> pdata;
|
||||
std::vector<int> datatype;
|
||||
std::vector<int> cols;
|
||||
std::vector<int*> maxcols;
|
||||
std::vector<int> collength;
|
||||
std::vector<void *> plength;
|
||||
std::vector<int> index;
|
||||
|
||||
void resize(int nfield);
|
||||
};
|
||||
|
||||
Method mgrow,mcopy;
|
||||
@ -219,9 +221,7 @@ class AtomVec : protected Pointers {
|
||||
int grow_nmax_bonus(int);
|
||||
void setup_fields();
|
||||
int process_fields(char *, const char *, Method *);
|
||||
void create_method(int, Method *);
|
||||
void init_method(Method *);
|
||||
void destroy_method(Method *);
|
||||
void init_method(int, Method *);
|
||||
};
|
||||
|
||||
}
|
||||
|
||||
@ -36,8 +36,6 @@
|
||||
|
||||
using namespace LAMMPS_NS;
|
||||
|
||||
#define MAXLINE 1024
|
||||
|
||||
/* ---------------------------------------------------------------------- */
|
||||
|
||||
Force::Force(LAMMPS *lmp) : Pointers(lmp)
|
||||
|
||||
@ -30,11 +30,13 @@
|
||||
#include "region.h"
|
||||
#include "tokenizer.h"
|
||||
#include "variable.h"
|
||||
#include "exceptions.h"
|
||||
|
||||
#include <cmath>
|
||||
#include <cstring>
|
||||
#include <map>
|
||||
#include <utility>
|
||||
#include <vector>
|
||||
|
||||
using namespace LAMMPS_NS;
|
||||
|
||||
@ -151,12 +153,14 @@ void Group::assign(int narg, char **arg)
|
||||
// add a new group if igroup = -1
|
||||
|
||||
int igroup = find(arg[0]);
|
||||
bool created = false;
|
||||
|
||||
if (igroup == -1) {
|
||||
if (ngroup == MAX_GROUP) error->all(FLERR,"Too many groups");
|
||||
igroup = find_unused();
|
||||
names[igroup] = utils::strdup(arg[0]);
|
||||
ngroup++;
|
||||
created = true;
|
||||
}
|
||||
|
||||
double **x = atom->x;
|
||||
@ -164,6 +168,7 @@ void Group::assign(int narg, char **arg)
|
||||
int nlocal = atom->nlocal;
|
||||
int bit = bitmask[igroup];
|
||||
|
||||
try {
|
||||
// style = region
|
||||
// add to group if atom is in region
|
||||
|
||||
@ -380,7 +385,7 @@ void Group::assign(int narg, char **arg)
|
||||
if (narg < 4) error->all(FLERR,"Illegal group command");
|
||||
|
||||
int length = narg-2;
|
||||
int *list = new int[length];
|
||||
std::vector<int> list(length);
|
||||
|
||||
int jgroup;
|
||||
for (int iarg = 2; iarg < narg; iarg++) {
|
||||
@ -409,8 +414,6 @@ void Group::assign(int narg, char **arg)
|
||||
if (mask[i] & otherbit) mask[i] &= inverse;
|
||||
}
|
||||
|
||||
delete [] list;
|
||||
|
||||
// style = union
|
||||
|
||||
} else if (strcmp(arg[1],"union") == 0) {
|
||||
@ -418,7 +421,7 @@ void Group::assign(int narg, char **arg)
|
||||
if (narg < 3) error->all(FLERR,"Illegal group command");
|
||||
|
||||
int length = narg-2;
|
||||
int *list = new int[length];
|
||||
std::vector<int> list(length);
|
||||
|
||||
int jgroup;
|
||||
for (int iarg = 2; iarg < narg; iarg++) {
|
||||
@ -439,8 +442,6 @@ void Group::assign(int narg, char **arg)
|
||||
if (mask[i] & otherbit) mask[i] |= bit;
|
||||
}
|
||||
|
||||
delete [] list;
|
||||
|
||||
// style = intersect
|
||||
|
||||
} else if (strcmp(arg[1],"intersect") == 0) {
|
||||
@ -448,7 +449,7 @@ void Group::assign(int narg, char **arg)
|
||||
if (narg < 4) error->all(FLERR,"Illegal group command");
|
||||
|
||||
int length = narg-2;
|
||||
int *list = new int[length];
|
||||
std::vector<int> list(length);
|
||||
|
||||
int jgroup;
|
||||
for (int iarg = 2; iarg < narg; iarg++) {
|
||||
@ -472,8 +473,6 @@ void Group::assign(int narg, char **arg)
|
||||
if (ok) mask[i] |= bit;
|
||||
}
|
||||
|
||||
delete [] list;
|
||||
|
||||
// style = dynamic
|
||||
// create a new FixGroup to dynamically determine atoms in group
|
||||
|
||||
@ -514,6 +513,16 @@ void Group::assign(int narg, char **arg)
|
||||
|
||||
} else error->all(FLERR,"Illegal group command");
|
||||
|
||||
} catch (LAMMPSException & e) {
|
||||
// undo created group in case of an error
|
||||
if (created) {
|
||||
delete [] names[igroup];
|
||||
names[igroup] = nullptr;
|
||||
ngroup--;
|
||||
}
|
||||
throw e;
|
||||
}
|
||||
|
||||
// print stats for changed group
|
||||
|
||||
int n;
|
||||
@ -539,13 +548,12 @@ void Group::assign(int narg, char **arg)
|
||||
void Group::assign(const std::string &groupcmd)
|
||||
{
|
||||
auto args = utils::split_words(groupcmd);
|
||||
char **newarg = new char*[args.size()];
|
||||
std::vector<char*> newarg(args.size());
|
||||
int i=0;
|
||||
for (const auto &arg : args) {
|
||||
newarg[i++] = (char *)arg.c_str();
|
||||
}
|
||||
assign(args.size(),newarg);
|
||||
delete[] newarg;
|
||||
assign(args.size(),newarg.data());
|
||||
}
|
||||
|
||||
/* ----------------------------------------------------------------------
|
||||
|
||||
@ -964,13 +964,12 @@ void Modify::add_fix(int narg, char **arg, int trysuffix)
|
||||
void Modify::add_fix(const std::string &fixcmd, int trysuffix)
|
||||
{
|
||||
auto args = utils::split_words(fixcmd);
|
||||
char **newarg = new char*[args.size()];
|
||||
std::vector<char *> newarg(args.size());
|
||||
int i = 0;
|
||||
for (const auto &arg : args) {
|
||||
newarg[i++] = (char *)arg.c_str();
|
||||
}
|
||||
add_fix(args.size(),newarg,trysuffix);
|
||||
delete[] newarg;
|
||||
add_fix(args.size(),newarg.data(),trysuffix);
|
||||
}
|
||||
|
||||
|
||||
|
||||
@ -36,7 +36,6 @@
|
||||
using namespace LAMMPS_NS;
|
||||
using namespace MathConst;
|
||||
|
||||
#define MAXLINE 1024
|
||||
#define DELTA 4
|
||||
#define PGDELTA 1
|
||||
#define MAXNEIGH 24
|
||||
|
||||
@ -27,8 +27,6 @@
|
||||
|
||||
using namespace LAMMPS_NS;
|
||||
|
||||
#define MAXLINE 2048
|
||||
|
||||
/* ---------------------------------------------------------------------- */
|
||||
|
||||
Run::Run(LAMMPS *lmp) : Command(lmp) {}
|
||||
|
||||
@ -412,7 +412,7 @@ void Variable::set(int narg, char **arg)
|
||||
if (style[ivar] != EQUAL)
|
||||
error->all(FLERR,"Cannot redefine variable as a different style");
|
||||
delete [] data[ivar][0];
|
||||
copy(1,&arg[2],data[ivar]);
|
||||
data[ivar][0] = utils::strdup(arg[2]);
|
||||
replaceflag = 1;
|
||||
} else {
|
||||
if (nvar == maxvar) grow();
|
||||
@ -421,7 +421,7 @@ void Variable::set(int narg, char **arg)
|
||||
which[nvar] = 0;
|
||||
pad[nvar] = 0;
|
||||
data[nvar] = new char*[num[nvar]];
|
||||
copy(1,&arg[2],data[nvar]);
|
||||
data[nvar][0] = utils::strdup(arg[2]);
|
||||
data[nvar][1] = new char[VALUELENGTH];
|
||||
strcpy(data[nvar][1],"(undefined)");
|
||||
}
|
||||
@ -438,7 +438,7 @@ void Variable::set(int narg, char **arg)
|
||||
if (style[ivar] != ATOM)
|
||||
error->all(FLERR,"Cannot redefine variable as a different style");
|
||||
delete [] data[ivar][0];
|
||||
copy(1,&arg[2],data[ivar]);
|
||||
data[ivar][0] = utils::strdup(arg[2]);
|
||||
replaceflag = 1;
|
||||
} else {
|
||||
if (nvar == maxvar) grow();
|
||||
@ -447,7 +447,7 @@ void Variable::set(int narg, char **arg)
|
||||
which[nvar] = 0;
|
||||
pad[nvar] = 0;
|
||||
data[nvar] = new char*[num[nvar]];
|
||||
copy(1,&arg[2],data[nvar]);
|
||||
data[nvar][0] = utils::strdup(arg[2]);
|
||||
}
|
||||
|
||||
// VECTOR
|
||||
@ -462,7 +462,7 @@ void Variable::set(int narg, char **arg)
|
||||
if (style[ivar] != VECTOR)
|
||||
error->all(FLERR,"Cannot redefine variable as a different style");
|
||||
delete [] data[ivar][0];
|
||||
copy(1,&arg[2],data[ivar]);
|
||||
data[ivar][0] = utils::strdup(arg[2]);
|
||||
replaceflag = 1;
|
||||
} else {
|
||||
if (nvar == maxvar) grow();
|
||||
@ -471,7 +471,7 @@ void Variable::set(int narg, char **arg)
|
||||
which[nvar] = 0;
|
||||
pad[nvar] = 0;
|
||||
data[nvar] = new char*[num[nvar]];
|
||||
copy(1,&arg[2],data[nvar]);
|
||||
data[nvar][0] = utils::strdup(arg[2]);
|
||||
}
|
||||
|
||||
// PYTHON
|
||||
@ -488,7 +488,7 @@ void Variable::set(int narg, char **arg)
|
||||
if (style[ivar] != PYTHON)
|
||||
error->all(FLERR,"Cannot redefine variable as a different style");
|
||||
delete [] data[ivar][0];
|
||||
copy(1,&arg[2],data[ivar]);
|
||||
data[ivar][0] = utils::strdup(arg[2]);
|
||||
replaceflag = 1;
|
||||
} else {
|
||||
if (nvar == maxvar) grow();
|
||||
@ -497,7 +497,7 @@ void Variable::set(int narg, char **arg)
|
||||
which[nvar] = 1;
|
||||
pad[nvar] = 0;
|
||||
data[nvar] = new char*[num[nvar]];
|
||||
copy(1,&arg[2],data[nvar]);
|
||||
data[nvar][0] = utils::strdup(arg[2]);
|
||||
data[nvar][1] = new char[VALUELENGTH];
|
||||
strcpy(data[nvar][1],"(undefined)");
|
||||
}
|
||||
|
||||
@ -7,6 +7,7 @@ add_test(NAME RunLammps
|
||||
COMMAND $<TARGET_FILE:lmp> -log none -echo none -in in.empty
|
||||
WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR})
|
||||
set_tests_properties(RunLammps PROPERTIES
|
||||
ENVIRONMENT "TSAN_OPTIONS='ignore_noninstrumented_modules=1'"
|
||||
PASS_REGULAR_EXPRESSION "^LAMMPS \\([0-9]+ [A-Za-z]+ 2[0-9][0-9][0-9]\\)")
|
||||
|
||||
if(BUILD_MPI)
|
||||
|
||||
@ -297,7 +297,7 @@ TEST_F(GroupTest, Dynamic)
|
||||
command("group grow delete");
|
||||
command("variable ramp equal step");
|
||||
END_HIDE_OUTPUT();
|
||||
ASSERT_EQ(group->ngroup, 4);
|
||||
ASSERT_EQ(group->ngroup, 3);
|
||||
|
||||
TEST_FAILURE(".*ERROR: Group dynamic cannot reference itself.*",
|
||||
command("group half dynamic half region top"););
|
||||
|
||||
@ -48,7 +48,7 @@
|
||||
|
||||
using LAMMPS_NS::utils::split_words;
|
||||
|
||||
static void create_molecule_files()
|
||||
static void create_molecule_files(const std::string & h2o_filename, const std::string & co2_filename)
|
||||
{
|
||||
// create molecule files
|
||||
const char h2o_file[] = "# Water molecule. SPC/E model.\n\n3 atoms\n2 bonds\n1 angles\n\n"
|
||||
@ -73,18 +73,16 @@ static void create_molecule_files()
|
||||
"Special Bond Counts\n\n1 2 0 0\n2 1 1 0\n3 1 1 0\n\n"
|
||||
"Special Bonds\n\n1 2 3\n2 1 3\n3 1 2\n\n";
|
||||
|
||||
FILE *fp = fopen("tmp.h2o.mol", "w");
|
||||
FILE *fp = fopen(h2o_filename.c_str(), "w");
|
||||
if (fp) {
|
||||
fputs(h2o_file, fp);
|
||||
fclose(fp);
|
||||
}
|
||||
rename("tmp.h2o.mol", "h2o.mol");
|
||||
fp = fopen("tmp.co2.mol", "w");
|
||||
fp = fopen(co2_filename.c_str(), "w");
|
||||
if (fp) {
|
||||
fputs(co2_file, fp);
|
||||
fclose(fp);
|
||||
}
|
||||
rename("tmp.co2.mol", "co2.mol");
|
||||
}
|
||||
|
||||
// whether to print verbose output (i.e. not capturing LAMMPS screen output).
|
||||
@ -97,6 +95,15 @@ using ::testing::Eq;
|
||||
|
||||
class AtomStyleTest : public LAMMPSTest {
|
||||
protected:
|
||||
static void SetUpTestSuite() {
|
||||
create_molecule_files("h2o.mol", "co2.mol");
|
||||
}
|
||||
|
||||
static void TearDownTestSuite() {
|
||||
remove("h2o.mol");
|
||||
remove("co2.mol");
|
||||
}
|
||||
|
||||
void SetUp() override
|
||||
{
|
||||
testbinary = "AtomStyleTest";
|
||||
@ -2618,7 +2625,6 @@ TEST_F(AtomStyleTest, body_nparticle)
|
||||
TEST_F(AtomStyleTest, template)
|
||||
{
|
||||
if (!LAMMPS::is_installed_pkg("MOLECULE")) GTEST_SKIP();
|
||||
create_molecule_files();
|
||||
BEGIN_HIDE_OUTPUT();
|
||||
command("molecule twomols h2o.mol co2.mol offset 2 1 1 0 0");
|
||||
command("atom_style template twomols");
|
||||
@ -3014,7 +3020,6 @@ TEST_F(AtomStyleTest, template)
|
||||
TEST_F(AtomStyleTest, template_charge)
|
||||
{
|
||||
if (!LAMMPS::is_installed_pkg("MOLECULE")) GTEST_SKIP();
|
||||
create_molecule_files();
|
||||
BEGIN_HIDE_OUTPUT();
|
||||
command("molecule twomols h2o.mol co2.mol offset 2 1 1 0 0");
|
||||
command("atom_style hybrid template twomols charge");
|
||||
|
||||
@ -35,7 +35,7 @@ using utils::split_words;
|
||||
#define test_name test_info_->name()
|
||||
|
||||
|
||||
static void create_molecule_files()
|
||||
static void create_molecule_files(const std::string & h2o_filename, const std::string & co2_filename)
|
||||
{
|
||||
// create molecule files
|
||||
const char h2o_file[] = "# Water molecule. SPC/E model.\n\n3 atoms\n2 bonds\n1 angles\n\n"
|
||||
@ -60,18 +60,16 @@ static void create_molecule_files()
|
||||
"Special Bond Counts\n\n1 2 0 0\n2 1 1 0\n3 1 1 0\n\n"
|
||||
"Special Bonds\n\n1 2 3\n2 1 3\n3 1 2\n\n";
|
||||
|
||||
FILE *fp = fopen("tmp.h2o.mol", "w");
|
||||
FILE *fp = fopen(h2o_filename.c_str(), "w");
|
||||
if (fp) {
|
||||
fputs(h2o_file, fp);
|
||||
fclose(fp);
|
||||
}
|
||||
rename("tmp.h2o.mol", "h2o.mol");
|
||||
fp = fopen("tmp.co2.mol", "w");
|
||||
fp = fopen(co2_filename.c_str(), "w");
|
||||
if (fp) {
|
||||
fputs(co2_file, fp);
|
||||
fclose(fp);
|
||||
}
|
||||
rename("tmp.co2.mol", "co2.mol");
|
||||
}
|
||||
|
||||
// whether to print verbose output (i.e. not capturing LAMMPS screen output).
|
||||
@ -79,26 +77,30 @@ bool verbose = false;
|
||||
|
||||
class MoleculeFileTest : public LAMMPSTest {
|
||||
protected:
|
||||
static void SetUpTestSuite() {
|
||||
create_molecule_files("moltest.h2o.mol", "moltest.co2.mol");
|
||||
}
|
||||
|
||||
static void TearDownTestSuite() {
|
||||
remove("moltest.h2o.mol");
|
||||
remove("moltest.co2.mol");
|
||||
}
|
||||
|
||||
void SetUp() override
|
||||
{
|
||||
testbinary = "MoleculeFileTest";
|
||||
LAMMPSTest::SetUp();
|
||||
ASSERT_NE(lmp, nullptr);
|
||||
BEGIN_HIDE_OUTPUT();
|
||||
create_molecule_files();
|
||||
END_HIDE_OUTPUT();
|
||||
}
|
||||
|
||||
void TearDown() override
|
||||
{
|
||||
LAMMPSTest::TearDown();
|
||||
remove("h2o.mol");
|
||||
remove("co2.mol");
|
||||
}
|
||||
|
||||
void run_mol_cmd(const std::string &name, const std::string &args, const std::string &content)
|
||||
{
|
||||
std::string file = name + ".mol";
|
||||
std::string file = fmt::format("moltest_{}.mol", name);
|
||||
FILE *fp = fopen(file.c_str(), "w");
|
||||
fputs(content.c_str(), fp);
|
||||
fclose(fp);
|
||||
@ -195,7 +197,7 @@ TEST_F(MoleculeFileTest, twomols)
|
||||
TEST_F(MoleculeFileTest, twofiles)
|
||||
{
|
||||
BEGIN_CAPTURE_OUTPUT();
|
||||
command("molecule twomols h2o.mol co2.mol offset 2 1 1 0 0");
|
||||
command("molecule twomols moltest.h2o.mol moltest.co2.mol offset 2 1 1 0 0");
|
||||
auto output = END_CAPTURE_OUTPUT();
|
||||
ASSERT_THAT(output, MatchesRegex(".*Read molecule template twomols:.*1 molecules.*3 atoms "
|
||||
"with max type 2.*2 bonds with max type 1.*"
|
||||
|
||||
@ -42,6 +42,9 @@ using ::testing::MatchesRegex;
|
||||
auto mesg = ::testing::internal::GetCapturedStdout(); \
|
||||
ASSERT_THAT(mesg, MatchesRegex(errmsg)); \
|
||||
} \
|
||||
else { \
|
||||
std::cerr << "[ ] [ INFO ] Skipping death test (no exception support) \n"; \
|
||||
} \
|
||||
}
|
||||
|
||||
// whether to print verbose output (i.e. not capturing LAMMPS screen output).
|
||||
|
||||
Reference in New Issue
Block a user