Update Kokkos library in LAMMPS to v2.9.00

This commit is contained in:
Stan Moore
2019-06-28 11:23:24 -06:00
parent 7f342b1cd0
commit ea2e73119d
506 changed files with 37043 additions and 6851 deletions

View File

@ -96,6 +96,7 @@ struct TestScan {
long long int total = 0;
Kokkos::parallel_scan( N, *this, total );
run_check( size_t( ( N+1 )*N/2 ), size_t( total ) );
check_error();
}
@ -109,6 +110,8 @@ struct TestScan {
errors = errors_a;
Kokkos::parallel_scan( exec_policy( Start , N ) , *this );
Kokkos::fence();
check_error();
}
@ -138,7 +141,7 @@ TEST_F( TEST_CATEGORY, scan )
TestScan< TEST_EXECSPACE >( 0 );
TestScan< TEST_EXECSPACE >( 100000 );
TestScan< TEST_EXECSPACE >( 10000000 );
TEST_EXECSPACE::fence();
TEST_EXECSPACE().fence();
}
@ -153,7 +156,7 @@ TEST_F( TEST_CATEGORY, scan )
TestScanFunctor( 1000000 );
TestScanFunctor( 10000000 );
TEST_EXECSPACE::fence();
TEST_EXECSPACE().fence();
}*/