Skip to content
Snippets Groups Projects
Commit daf766d4 authored by Stan Moore's avatar Stan Moore
Browse files

Fixing Kokkos neighbor bug

parent 630783c8
No related branches found
No related tags found
No related merge requests found
......@@ -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;
......
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