Updating Kokkos lib to v2.03.05

This commit is contained in:
Stan Moore
2017-06-08 10:42:08 -06:00
parent 286d4f2743
commit 5c1d17d1c0
474 changed files with 50972 additions and 10897 deletions

View File

@ -240,7 +240,7 @@ void cgsolve(
double old_rdot = dot( count_owned , r , data_map.machine );
normr = sqrt( old_rdot );
normr = std::sqrt( old_rdot );
iteration = 0 ;
Kokkos::Timer wall_clock ;
@ -262,7 +262,7 @@ void cgsolve(
/* p = r + beta * p ; */ xpby( count_owned , r , beta , p );
normr = sqrt( old_rdot = r_dot );
normr = std::sqrt( old_rdot = r_dot );
++iteration ;
}