From 2cd95d1a99d63d8ab109a3b6cd8df76b271d709e Mon Sep 17 00:00:00 2001 From: Stan Moore <stamoor@sandia.gov> Date: Fri, 6 Jul 2018 15:47:14 -0600 Subject: [PATCH] Fix misnamed variable in comm_kokkos --- src/KOKKOS/comm_kokkos.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/KOKKOS/comm_kokkos.cpp b/src/KOKKOS/comm_kokkos.cpp index 96d1c64d0d..d00d766318 100644 --- a/src/KOKKOS/comm_kokkos.cpp +++ b/src/KOKKOS/comm_kokkos.cpp @@ -707,7 +707,7 @@ void CommKokkos::borders() if (!exchange_comm_classic) { static int print = 1; - if (style != Comm::SINGLE || bordergroup || ghost_velocity) { + if (mode != Comm::SINGLE || bordergroup || ghost_velocity) { if (print && comm->me==0) { error->warning(FLERR,"Required border comm not yet implemented in Kokkos communication, " "switching to classic communication"); @@ -815,7 +815,7 @@ void CommKokkos::borders_device() { // store sent atom indices in list for use in future timesteps x = atom->x; - if (style == Comm::SINGLE) { + if (mode == Comm::SINGLE) { lo = slablo[iswap]; hi = slabhi[iswap]; } else { @@ -844,7 +844,7 @@ void CommKokkos::borders_device() { if (sendflag) { if (!bordergroup || ineed >= 2) { - if (style == Comm::SINGLE) { + if (mode == Comm::SINGLE) { k_total_send.h_view() = 0; k_total_send.template modify<LMPHostType>(); k_total_send.template sync<LMPDeviceType>(); @@ -892,7 +892,7 @@ void CommKokkos::borders_device() { } else { error->all(FLERR,"Required border comm not yet " "implemented with Kokkos"); - if (style == Comm::SINGLE) { + if (mode == Comm::SINGLE) { ngroup = atom->nfirst; for (i = 0; i < ngroup; i++) if (x[i][dim] >= lo && x[i][dim] <= hi) { @@ -1097,7 +1097,7 @@ void CommKokkos::grow_swap(int n) { free_swap(); allocate_swap(n); - if (style == Comm::MULTI) { + if (mode == Comm::MULTI) { free_multi(); allocate_multi(n); } -- GitLab