add kokkosable variable

This commit is contained in:
Megan J. McCarthy
2024-06-27 22:31:59 -06:00
parent a74500f416
commit 0de8192a9b
6 changed files with 6 additions and 6 deletions

View File

@ -50,7 +50,7 @@ Angle::Angle(LAMMPS *_lmp) : Pointers(_lmp)
datamask_read = ALL_MASK;
datamask_modify = ALL_MASK;
copymode = 0;
copymode = kokkosable = 0;
}
/* ---------------------------------------------------------------------- */

View File

@ -44,7 +44,7 @@ class Angle : protected Pointers {
ExecutionSpace execution_space;
unsigned int datamask_read, datamask_modify;
int copymode;
int copymode, kokkosable;
Angle(class LAMMPS *);
~Angle() override;

View File

@ -48,7 +48,7 @@ Dihedral::Dihedral(LAMMPS *_lmp) : Pointers(_lmp)
datamask_read = ALL_MASK;
datamask_modify = ALL_MASK;
copymode = 0;
copymode = kokkosable = 0;
}
/* ---------------------------------------------------------------------- */

View File

@ -41,7 +41,7 @@ class Dihedral : protected Pointers {
ExecutionSpace execution_space;
unsigned int datamask_read, datamask_modify;
int copymode;
int copymode, kokkosable;
Dihedral(class LAMMPS *);
~Dihedral() override;

View File

@ -47,7 +47,7 @@ Improper::Improper(LAMMPS *_lmp) : Pointers(_lmp)
datamask_read = ALL_MASK;
datamask_modify = ALL_MASK;
copymode = 0;
copymode = kokkosable = 0;
}
/* ---------------------------------------------------------------------- */

View File

@ -46,7 +46,7 @@ class Improper : protected Pointers {
ExecutionSpace execution_space;
unsigned int datamask_read, datamask_modify;
int copymode;
int copymode, kokkosable;
Improper(class LAMMPS *);
~Improper() override;