Skip to content

Commit

Permalink
Fix GPU wall distance unit test
Browse files Browse the repository at this point in the history
  • Loading branch information
marchdf committed Sep 23, 2024
1 parent 6598e48 commit 572f513
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions unit_tests/kernels/UnitTestWallDistElem.C
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ TEST_F(WallDistKernelHex8Mesh, NGP_wall_dist)

namespace gold_values = hex8_golds::wall_dist_default;
unit_test_kernel_utils::expect_all_near(helperObjs.linsys->rhs_, 0.125);
unit_test_kernel_utils::expect_all_near(
unit_test_kernel_utils::expect_all_near<8>(
helperObjs.linsys->lhs_, gold_values::lhs);
}

Expand Down Expand Up @@ -250,6 +250,6 @@ TEST_F(WallDistKernelHex8Mesh, NGP_wall_dist_shifted)

namespace gold_values = hex8_golds::wall_dist_lumped;
unit_test_kernel_utils::expect_all_near(helperObjs.linsys->rhs_, 0.125);
unit_test_kernel_utils::expect_all_near(
unit_test_kernel_utils::expect_all_near<8>(
helperObjs.linsys->lhs_, gold_values::lhs);
}

0 comments on commit 572f513

Please sign in to comment.