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

@ -259,7 +259,7 @@ void cgsolve( const ImportType & import
timer.reset();
/* import p */ import( pAll );
/* Ap = A * p */ multiply( count_owned , Ap , A , pAll );
Space::fence();
Space().fence();
matvec_time += timer.seconds();
const double pAp_dot = Kokkos::Example::all_reduce( dot( count_owned , p , Ap ) , import.comm );
@ -278,7 +278,7 @@ void cgsolve( const ImportType & import
++iteration ;
}
Space::fence();
Space().fence();
iter_time = wall_clock.seconds();
if ( 0 != result ) {