Update Kokkos library in LAMMPS to v3.7.0
This commit is contained in:
@ -82,8 +82,8 @@ void test_scatter_view(int m, int n) {
|
||||
Kokkos::Timer timer;
|
||||
timer.reset();
|
||||
for (int k = 0; k < m; ++k) {
|
||||
Kokkos::parallel_for(policy, f2,
|
||||
"hand_coded_duplicate_scatter_view_test");
|
||||
Kokkos::parallel_for("hand_coded_duplicate_scatter_view_test", policy,
|
||||
f2);
|
||||
}
|
||||
Kokkos::fence();
|
||||
auto t = timer.seconds();
|
||||
@ -102,7 +102,7 @@ void test_scatter_view(int m, int n) {
|
||||
Kokkos::Timer timer;
|
||||
timer.reset();
|
||||
for (int k = 0; k < m; ++k) {
|
||||
Kokkos::parallel_for(policy, f, "scatter_view_test");
|
||||
Kokkos::parallel_for("scatter_view_test", policy, f);
|
||||
}
|
||||
Kokkos::fence();
|
||||
auto t = timer.seconds();
|
||||
|
||||
Reference in New Issue
Block a user