Skip to content
Snippets Groups Projects
Unverified Commit d029cb90 authored by Steve Plimpton's avatar Steve Plimpton Committed by GitHub
Browse files

Merge pull request #743 from stanmoore1/kk_yukawa_fix

Fix compile error in pair_yukawa_kokkos
parents d7e5d60f 3e99d1a8
No related branches found
No related tags found
No related merge requests found
...@@ -1023,7 +1023,7 @@ KOKKOS, o = USER-OMP, t = OPT. ...@@ -1023,7 +1023,7 @@ KOKKOS, o = USER-OMP, t = OPT.
"tri/lj"_pair_tri_lj.html, "tri/lj"_pair_tri_lj.html,
"vashishta (ko)"_pair_vashishta.html, "vashishta (ko)"_pair_vashishta.html,
"vashishta/table (o)"_pair_vashishta.html, "vashishta/table (o)"_pair_vashishta.html,
"yukawa (go)"_pair_yukawa.html, "yukawa (gok)"_pair_yukawa.html,
"yukawa/colloid (go)"_pair_yukawa_colloid.html, "yukawa/colloid (go)"_pair_yukawa_colloid.html,
"zbl (go)"_pair_zbl.html :tb(c=4,ea=c) "zbl (go)"_pair_zbl.html :tb(c=4,ea=c)
......
...@@ -28,7 +28,7 @@ ...@@ -28,7 +28,7 @@
#include "integrate.h" #include "integrate.h"
#include "respa.h" #include "respa.h"
#include "math_const.h" #include "math_const.h"
#include "memory.h" #include "memory_kokkos.h"
#include "error.h" #include "error.h"
#include "atom_masks.h" #include "atom_masks.h"
...@@ -58,8 +58,8 @@ template<class DeviceType> ...@@ -58,8 +58,8 @@ template<class DeviceType>
PairYukawaKokkos<DeviceType>::~PairYukawaKokkos() PairYukawaKokkos<DeviceType>::~PairYukawaKokkos()
{ {
if (allocated) { if (allocated) {
memory->destroy_kokkos(k_eatom,eatom); memoryKK->destroy_kokkos(k_eatom,eatom);
memory->destroy_kokkos(k_vatom,vatom); memoryKK->destroy_kokkos(k_vatom,vatom);
k_cutsq = DAT::tdual_ffloat_2d(); k_cutsq = DAT::tdual_ffloat_2d();
memory->sfree(cutsq); memory->sfree(cutsq);
eatom = NULL; eatom = NULL;
...@@ -90,7 +90,7 @@ void PairYukawaKokkos<DeviceType>::allocate() ...@@ -90,7 +90,7 @@ void PairYukawaKokkos<DeviceType>::allocate()
int n = atom->ntypes; int n = atom->ntypes;
memory->destroy(cutsq); memory->destroy(cutsq);
memory->create_kokkos(k_cutsq,cutsq,n+1,n+1,"pair:cutsq"); memoryKK->create_kokkos(k_cutsq,cutsq,n+1,n+1,"pair:cutsq");
d_cutsq = k_cutsq.template view<DeviceType>(); d_cutsq = k_cutsq.template view<DeviceType>();
k_params = Kokkos::DualView<params_yukawa**, k_params = Kokkos::DualView<params_yukawa**,
Kokkos::LayoutRight,DeviceType>( Kokkos::LayoutRight,DeviceType>(
...@@ -183,13 +183,13 @@ void PairYukawaKokkos<DeviceType>::compute(int eflag_in, int vflag_in) ...@@ -183,13 +183,13 @@ void PairYukawaKokkos<DeviceType>::compute(int eflag_in, int vflag_in)
// reallocate per-atom arrays if necessary // reallocate per-atom arrays if necessary
if (eflag_atom) { if (eflag_atom) {
memory->destroy_kokkos(k_eatom,eatom); memoryKK->destroy_kokkos(k_eatom,eatom);
memory->create_kokkos(k_eatom,eatom,maxeatom,"pair:eatom"); memoryKK->create_kokkos(k_eatom,eatom,maxeatom,"pair:eatom");
d_eatom = k_eatom.view<DeviceType>(); d_eatom = k_eatom.view<DeviceType>();
} }
if (vflag_atom) { if (vflag_atom) {
memory->destroy_kokkos(k_vatom,vatom); memoryKK->destroy_kokkos(k_vatom,vatom);
memory->create_kokkos(k_vatom,vatom,maxvatom,6,"pair:vatom"); memoryKK->create_kokkos(k_vatom,vatom,maxvatom,6,"pair:vatom");
d_vatom = k_vatom.view<DeviceType>(); d_vatom = k_vatom.view<DeviceType>();
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment