Fixing Kokkos neighbor bug

This commit is contained in:
Stan Moore 2017-01-12 16:22:38 -07:00
parent 630783c8e8
commit daf766d4f8
1 changed files with 2 additions and 0 deletions

View File

@ -139,6 +139,8 @@ int NeighRequest::identical(NeighRequest *other)
if (ghost != other->ghost) same = 0;
if (omp != other->omp) same = 0;
if (intel != other->intel) same = 0;
if (kokkos_host != other->kokkos_host) same = 0;
if (kokkos_device != other->kokkos_device) same = 0;
if (ssa != other->ssa) same = 0;
if (copy != other->copy_original) same = 0;