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

@ -86,7 +86,6 @@ struct TestComplexConstruction {
// Copy construction conversion between
// Kokkos::complex and std::complex doesn't compile
#ifndef KOKKOS_ENABLE_HIP // FIXME_HIP
Kokkos::complex<double> a(1.5, 2.5), b(3.25, 5.25), r_kk;
std::complex<double> sa(a), sb(3.25, 5.25), r;
r = a;
@ -101,7 +100,6 @@ struct TestComplexConstruction {
r_kk = a;
ASSERT_FLOAT_EQ(r.real(), r_kk.real());
ASSERT_FLOAT_EQ(r.imag(), r_kk.imag());
#endif
}
KOKKOS_INLINE_FUNCTION