git-svn-id: svn://svn.icms.temple.edu/lammps-ro/trunk@8723 f3b2605a-c512-4ea7-a41b-209d697bcdaa
This commit is contained in:
@ -20,6 +20,7 @@ namespace LAMMPS_NS {
|
||||
|
||||
class Compute : protected Pointers {
|
||||
public:
|
||||
|
||||
char *id,*style;
|
||||
int igroup,groupbit;
|
||||
|
||||
@ -77,6 +78,9 @@ class Compute : protected Pointers {
|
||||
int comm_forward; // size of forward communication (0 if none)
|
||||
int comm_reverse; // size of reverse communication (0 if none)
|
||||
|
||||
unsigned int datamask;
|
||||
unsigned int datamask_ext;
|
||||
|
||||
int cudable; // 1 if compute is CUDA-enabled
|
||||
|
||||
Compute(class LAMMPS *, int, char **);
|
||||
@ -111,6 +115,9 @@ class Compute : protected Pointers {
|
||||
|
||||
virtual double memory_usage() {return 0.0;}
|
||||
|
||||
virtual int unsigned data_mask() {return datamask;}
|
||||
virtual int unsigned data_mask_ext() {return datamask_ext;}
|
||||
|
||||
protected:
|
||||
int extra_dof; // extra DOF for temperature computes
|
||||
int dynamic; // recount atoms for temperature computes
|
||||
|
||||
Reference in New Issue
Block a user