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 {
|
||||
@ -107,7 +105,7 @@ void verify_data(ViewType1 test_view, ViewType2 orig_view) {
|
||||
|
||||
const std::size_t ext = test_view.extent(0);
|
||||
for (std::size_t i = 0; i < ext; ++i) {
|
||||
EXPECT_TRUE(tv_h(i) == ov_h(ext - i - 1));
|
||||
EXPECT_EQ(tv_h(i), ov_h(ext - i - 1));
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user