Update Kokkos library in LAMMPS to v3.2
This commit is contained in:
@ -50,14 +50,14 @@
|
||||
|
||||
namespace Perf {
|
||||
|
||||
template <typename ExecSpace, typename Layout, int duplication,
|
||||
int contribution>
|
||||
template <typename ExecSpace, typename Layout, typename Duplication,
|
||||
typename Contribution>
|
||||
void test_scatter_view(int m, int n) {
|
||||
Kokkos::View<double * [3], Layout, ExecSpace> original_view("original_view",
|
||||
n);
|
||||
{
|
||||
auto scatter_view = Kokkos::Experimental::create_scatter_view<
|
||||
Kokkos::Experimental::ScatterSum, duplication, contribution>(
|
||||
Kokkos::Experimental::ScatterSum, Duplication, Contribution>(
|
||||
original_view);
|
||||
Kokkos::Experimental::UniqueToken<
|
||||
ExecSpace, Kokkos::Experimental::UniqueTokenScope::Global>
|
||||
|
||||
Reference in New Issue
Block a user