From a1d2c9330aa0d5ab47a1f3bf572d4968664caf7a Mon Sep 17 00:00:00 2001 From: Yohann Bosqued Date: Mon, 16 Oct 2023 08:19:42 -0400 Subject: [PATCH] Testing views name --- test/tstInterpMovingLeastSquares.cpp | 32 ++++++++++++++-------------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/test/tstInterpMovingLeastSquares.cpp b/test/tstInterpMovingLeastSquares.cpp index 218146343..128c8dc53 100644 --- a/test/tstInterpMovingLeastSquares.cpp +++ b/test/tstInterpMovingLeastSquares.cpp @@ -30,10 +30,10 @@ BOOST_AUTO_TEST_CASE_TEMPLATE(moving_least_squares, DeviceType, // SRC: 0 2 4 6 // TGT: 1 3 5 using point0 = ArborX::ExperimentalHyperGeometry::Point<1, double>; - Kokkos::View srcp0("srcp", 4); - Kokkos::View tgtp0("tgtp", 3); - Kokkos::View srcv0("srcv", 4); - Kokkos::View tgtv0("tgtv", 3); + Kokkos::View srcp0("Testing::srcp0", 4); + Kokkos::View tgtp0("Testing::tgtp0", 3); + Kokkos::View srcv0("Testing::srcv0", 4); + Kokkos::View tgtv0("Testing::tgtv0", 3); Kokkos::parallel_for( "for", Kokkos::RangePolicy(space, 0, 4), KOKKOS_LAMBDA(int const i) { @@ -64,10 +64,10 @@ BOOST_AUTO_TEST_CASE_TEMPLATE(moving_least_squares, DeviceType, // S S S // | using point1 = ArborX::ExperimentalHyperGeometry::Point<2, double>; - Kokkos::View srcp1("srcp", 9); - Kokkos::View tgtp1("tgtp", 4); - Kokkos::View srcv1("srcv", 9); - Kokkos::View tgtv1("tgtv", 4); + Kokkos::View srcp1("Testing::srcp1", 9); + Kokkos::View tgtp1("Testing::tgtp1", 4); + Kokkos::View srcv1("Testing::srcv1", 9); + Kokkos::View tgtv1("Testing::tgtv1", 4); Kokkos::parallel_for( "for", Kokkos::RangePolicy(space, 0, 9), KOKKOS_LAMBDA(int const i) { @@ -101,10 +101,10 @@ BOOST_AUTO_TEST_CASE_TEMPLATE(moving_least_squares_edge_cases, DeviceType, // Case 1: Same as previous case 1, but points are 2D and locked on y=0 using point0 = ArborX::ExperimentalHyperGeometry::Point<2, double>; - Kokkos::View srcp0("srcp", 4); - Kokkos::View tgtp0("tgtp", 3); - Kokkos::View srcv0("srcv", 4); - Kokkos::View tgtv0("tgtv", 3); + Kokkos::View srcp0("Testing::srcp0", 4); + Kokkos::View tgtp0("Testing::tgtp0", 3); + Kokkos::View srcv0("Testing::srcv0", 4); + Kokkos::View tgtv0("Testing::tgtv0", 3); Kokkos::parallel_for( "for", Kokkos::RangePolicy(space, 0, 4), KOKKOS_LAMBDA(int const i) { @@ -127,10 +127,10 @@ BOOST_AUTO_TEST_CASE_TEMPLATE(moving_least_squares_edge_cases, DeviceType, // Case 2: Same but corner source points are also targets using point1 = ArborX::ExperimentalHyperGeometry::Point<2, double>; - Kokkos::View srcp1("srcp", 9); - Kokkos::View tgtp1("tgtp", 4); - Kokkos::View srcv1("srcv", 9); - Kokkos::View tgtv1("tgtv", 4); + Kokkos::View srcp1("Testing::srcp1", 9); + Kokkos::View tgtp1("Testing::tgtp1", 4); + Kokkos::View srcv1("Testing::srcv1", 9); + Kokkos::View tgtv1("Testing::tgtv1", 4); Kokkos::parallel_for( "for", Kokkos::RangePolicy(space, 0, 9), KOKKOS_LAMBDA(int const i) {