remove trailing whitespace

This commit is contained in:
Axel Kohlmeyer 2020-04-01 20:27:43 -04:00
parent eb955b44f8
commit 96202ccf56
No known key found for this signature in database
GPG Key ID: D9B44E93BF0C375A
1 changed files with 1 additions and 1 deletions

View File

@ -279,7 +279,7 @@ void NPairKokkos<DeviceType,HALF_NEIGH,GHOST,TRI,SIZE>::build(NeighList *list_)
if (team_size <= team_size_max) {
Kokkos::TeamPolicy<DeviceType> config((mbins+factor-1)/factor,team_size);
Kokkos::parallel_for(config, f);
} else Kokkos::parallel_for(nall, f); // fall back to flat method
} else Kokkos::parallel_for(nall, f); // fall back to flat method
} else
Kokkos::parallel_for(nall, f);
#else