Skip to content

Commit

Permalink
Merge Pull Request #7237 from brian-kelley/Trilinos/FixNotayNoETI
Browse files Browse the repository at this point in the history
Automatically Merged using Trilinos Pull Request AutoTester
PR Title: MueLu: fix build error in Notay pairwise agg
PR Author: brian-kelley
  • Loading branch information
trilinos-autotester authored Apr 23, 2020
2 parents f4b665b + 3a27880 commit f2cd36c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ namespace MueLu {
MueLu::NotayUtils::RandomReorder(orderingVector);
#if defined(HAVE_MUELU_KOKKOS_REFACTOR)
else if (ordering == O_CUTHILL_MCKEE) {
RCP<Xpetra::Vector<LO,LO,GO,NO> > rcmVector = Utilities_kokkos<SC,LO,GO,NO>::CuthillMcKee(*A);
RCP<Xpetra::Vector<LO,LO,GO,NO> > rcmVector = MueLu::Utilities_kokkos<SC,LO,GO,NO>::CuthillMcKee(*A);
auto localVector = rcmVector->getData(0);
for (LO i = 0; i < numRows; i++)
orderingVector[i] = localVector[i];
Expand Down

0 comments on commit f2cd36c

Please sign in to comment.