Update Kokkos library in LAMMPS to v3.7.0
This commit is contained in:
@ -43,8 +43,6 @@
|
||||
*/
|
||||
|
||||
#include <TestStdAlgorithmsCommon.hpp>
|
||||
#include <std_algorithms/Kokkos_BeginEnd.hpp>
|
||||
#include <std_algorithms/Kokkos_ModifyingSequenceOperations.hpp>
|
||||
#include <utility>
|
||||
|
||||
namespace Test {
|
||||
@ -88,7 +86,7 @@ void verify_data(ViewTypeFrom view_from, ViewTypeTest view_test) {
|
||||
create_mirror_view_and_copy(Kokkos::HostSpace(), view_from_dc);
|
||||
|
||||
for (std::size_t i = 0; i < view_test_h.extent(0); ++i) {
|
||||
EXPECT_TRUE(view_test_h(i) == view_from_h(i) + value_type(1));
|
||||
EXPECT_EQ(view_test_h(i), view_from_h(i) + value_type(1));
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user