Update Kokkos library in LAMMPS to v3.2

This commit is contained in:
Stan Moore
2020-08-25 20:21:48 -06:00
parent 450fd12d31
commit 4d90c2b74b
1410 changed files with 19364 additions and 71953 deletions

View File

@ -176,7 +176,7 @@ void test_count_fill(std::int32_t nrows) {
template <class ExecSpace>
void test_constructor(std::int32_t nrows) {
for (int nTest = 1; nTest < 5; nTest++) {
typedef Kokkos::Crs<float, ExecSpace, void, std::int32_t> crs_type;
using crs_type = Kokkos::Crs<float, ExecSpace, void, std::int32_t>;
crs_type graph;
Kokkos::count_and_fill_crs(graph, nrows, CountFillFunctor<ExecSpace>());
ASSERT_EQ(graph.numRows(), nrows);