Christian's kokkos patch that allows concurrent host and device threading
git-svn-id: svn://svn.icms.temple.edu/lammps-ro/trunk@14752 f3b2605a-c512-4ea7-a41b-209d697bcdaa
This commit is contained in:
@ -650,7 +650,11 @@ void LAMMPS::create()
|
||||
|
||||
if (kokkos) atom = new AtomKokkos(this);
|
||||
else atom = new Atom(this);
|
||||
atom->create_avec("atomic",0,NULL,1);
|
||||
|
||||
if (kokkos)
|
||||
atom->create_avec("atomic/kk",0,NULL,1);
|
||||
else
|
||||
atom->create_avec("atomic",0,NULL,1);
|
||||
|
||||
group = new Group(this);
|
||||
force = new Force(this); // must be after group, to create temperature
|
||||
|
||||
Reference in New Issue
Block a user