Skip to content

Commit

Permalink
Merge Pull Request #9168 from kyungjoo-kim/Trilinos/master
Browse files Browse the repository at this point in the history
Automatically Merged using Trilinos Pull Request AutoTester
PR Title: Tacho - workaround for a compiler issue raised from an application.
PR Author: kyungjoo-kim
  • Loading branch information
trilinos-autotester authored May 25, 2021
2 parents 435143c + 92ceac9 commit 724fb1e
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ namespace Tacho {
det = a00*a11-a10*a01;
Kokkos::parallel_for
(Kokkos::TeamVectorRange(member, n),
[&](const ordinal_type &j) {
[=](const ordinal_type &j) {
const value_type
x0 = A(i-1,j),
x1 = A(i,j);
Expand All @@ -87,7 +87,7 @@ namespace Tacho {
a00 = D(i,0);
Kokkos::parallel_for
(Kokkos::TeamVectorRange(member, n),
[&](const ordinal_type &j) {
[=](const ordinal_type &j) {
A(i,j) /= a00;
});
}
Expand Down

0 comments on commit 724fb1e

Please sign in to comment.