Skip to content

Commit

Permalink
Merge Pull Request #13352 from cgcgcg/Trilinos/fixCoalesceDropKokkosTest
Browse files Browse the repository at this point in the history
Automatically Merged using Trilinos Pull Request AutoTester
PR Title: b'MueLu: Fix CoalesceDropFactory_kokkos unit test w/ Cuda UVM'
PR Author: cgcgcg
  • Loading branch information
trilinos-autotester authored Aug 15, 2024
2 parents 007ed76 + 9aef81c commit 3ef94db
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -973,7 +973,7 @@ TEUCHOS_UNIT_TEST_TEMPLATE_4_DECL(CoalesceDropFactory_kokkos, 2x2, Scalar, Local
if (useKokkos) {
auto graph = fineLevel.Get<RCP<LWGraph_kokkos>>("Graph", dropFact.get());
auto boundaryNodes_d = graph->GetBoundaryNodeMap();
boundaryNodes = Kokkos::create_mirror_view(boundaryNodes_d);
boundaryNodes = Kokkos::View<bool *, Kokkos::HostSpace>("boundaryNodes_host", boundaryNodes_d.extent(0));
Kokkos::deep_copy(boundaryNodes, boundaryNodes_d);
} else {
auto graph = fineLevel.Get<RCP<LWGraph>>("Graph", dropFact.get());
Expand Down

0 comments on commit 3ef94db

Please sign in to comment.