Commit 998c5b7d authored by sjplimp's avatar sjplimp
Browse files

git-svn-id: svn://svn.icms.temple.edu/lammps-ro/trunk@15693 f3b2605a-c512-4ea7-a41b-209d697bcdaa
parent 05c027fc
Loading
Loading
Loading
Loading
+0 −3
Original line number Diff line number Diff line
@@ -40,9 +40,6 @@ Angle::Angle(LAMMPS *lmp) : Pointers(lmp)
  vatom = NULL;
  setflag = NULL;

  datamask = ALL_MASK;
  datamask_ext = ALL_MASK;

  execution_space = Host;
  datamask_read = ALL_MASK;
  datamask_modify = ALL_MASK;
+1 −5
Original line number Diff line number Diff line
@@ -29,10 +29,9 @@ class Angle : protected Pointers {
  double energy;                  // accumulated energies
  double virial[6];               // accumlated virial
  double *eatom,**vatom;          // accumulated per-atom energy/virial
  unsigned int datamask;
  unsigned int datamask_ext;

  // KOKKOS host/device flag and data masks

  ExecutionSpace execution_space;
  unsigned int datamask_read,datamask_modify;
  int copymode;
@@ -51,9 +50,6 @@ class Angle : protected Pointers {
  virtual double single(int, int, int, int) = 0;
  virtual double memory_usage();

  virtual unsigned int data_mask() {return datamask;}
  virtual unsigned int data_mask_ext() {return datamask_ext;}

 protected:
  int suffix_flag;             // suffix compatibility flag

+0 −3
Original line number Diff line number Diff line
@@ -208,9 +208,6 @@ Atom::Atom(LAMMPS *lmp) : Pointers(lmp)
  atom_style = NULL;
  avec = NULL;

  datamask = ALL_MASK;
  datamask_ext = ALL_MASK;

  avec_map = new AtomVecCreatorMap();

#define ATOM_CLASS
+0 −5
Original line number Diff line number Diff line
@@ -124,11 +124,6 @@ class Atom : protected Pointers {
  char **iname,**dname;
  int nivector,ndvector;

  // used by USER-CUDA to flag used per-atom arrays

  unsigned int datamask;
  unsigned int datamask_ext;

  // atom style and per-atom array existence flags
  // customize by adding new flag

+0 −4
Original line number Diff line number Diff line
@@ -156,10 +156,6 @@ E: Invalid atom_style command

Self-explanatory.

E: USER-CUDA package requires a cuda enabled atom_style

Self-explanatory.

E: KOKKOS package requires a kokkos enabled atom_style

Self-explanatory.
Loading