diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 9741dbca..c3205d9a 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -96,7 +96,7 @@ if (${kokkos_DIR_FOUND}) endif() target_compile_definitions( ${CHECKPOINT_LIBRARY} PUBLIC - KOKKOS_ENABLED_CHECKPOINT=1 KOKKOS_KERNELS_ENABLED=${KERNELS} + MAGISTRATE_KOKKOS_ENABLED=1 MAGISTRATE_KOKKOS_KERNELS_ENABLED=${KERNELS} ) message(STATUS "Checkpoint: Kokkos enabled") target_link_libraries(${CHECKPOINT_LIBRARY} PUBLIC Kokkos::kokkos) diff --git a/src/checkpoint/container/kokkos_complex_serialize.h b/src/checkpoint/container/kokkos_complex_serialize.h index 7355e556..326a0375 100644 --- a/src/checkpoint/container/kokkos_complex_serialize.h +++ b/src/checkpoint/container/kokkos_complex_serialize.h @@ -50,7 +50,7 @@ #include "checkpoint/dispatch/dispatch.h" #include "checkpoint/dispatch/reconstructor.h" -#if KOKKOS_ENABLED_CHECKPOINT +#if MAGISTRATE_KOKKOS_ENABLED #include @@ -65,6 +65,6 @@ void serialize(SerializerT& s, Kokkos::complex& complex) } // namespace checkpoint -#endif /*KOKKOS_ENABLED_CHECKPOINT*/ +#endif /*MAGISTRATE_KOKKOS_ENABLED*/ #endif /*INCLUDED_CHECKPOINT_CONTAINER_KOKKOS_COMPLEX_SERIALIZE_H*/ diff --git a/src/checkpoint/container/kokkos_pair_serialize.h b/src/checkpoint/container/kokkos_pair_serialize.h index 892e08a2..109e67fb 100644 --- a/src/checkpoint/container/kokkos_pair_serialize.h +++ b/src/checkpoint/container/kokkos_pair_serialize.h @@ -50,7 +50,7 @@ #include "checkpoint/dispatch/dispatch.h" #include "checkpoint/dispatch/reconstructor.h" -#if KOKKOS_ENABLED_CHECKPOINT +#if MAGISTRATE_KOKKOS_ENABLED #include @@ -71,6 +71,6 @@ void serialize(SerializerT& s, Kokkos::pair& pair) } // namespace checkpoint -#endif /*KOKKOS_ENABLED_CHECKPOINT*/ +#endif /*MAGISTRATE_KOKKOS_ENABLED*/ #endif /*INCLUDED_CHECKPOINT_CONTAINER_KOKKOS_PAIR_SERIALIZE_H*/ diff --git a/src/checkpoint/container/kokkos_unordered_map_serialize.h b/src/checkpoint/container/kokkos_unordered_map_serialize.h index 1b5de430..aba6eafb 100644 --- a/src/checkpoint/container/kokkos_unordered_map_serialize.h +++ b/src/checkpoint/container/kokkos_unordered_map_serialize.h @@ -50,7 +50,7 @@ #include "checkpoint/dispatch/dispatch.h" #include "checkpoint/dispatch/reconstructor.h" -#if KOKKOS_ENABLED_CHECKPOINT +#if MAGISTRATE_KOKKOS_ENABLED #include @@ -156,6 +156,6 @@ typename std::enable_if_t< } // namespace checkpoint -#endif /*KOKKOS_ENABLED_CHECKPOINT*/ +#endif /*MAGISTRATE_KOKKOS_ENABLED*/ #endif /*INCLUDED_CHECKPOINT_CONTAINER_KOKKOS_UNORDERED_MAP_SERIALIZE_H*/ diff --git a/src/checkpoint/container/view_equality.h b/src/checkpoint/container/view_equality.h index 6a3bd277..b90842f8 100644 --- a/src/checkpoint/container/view_equality.h +++ b/src/checkpoint/container/view_equality.h @@ -50,7 +50,7 @@ #include "checkpoint/container/view_traverse_manual.h" #include "checkpoint/container/view_traverse_ndim.h" -#if KOKKOS_ENABLED_CHECKPOINT +#if MAGISTRATE_KOKKOS_ENABLED #include #include @@ -344,6 +344,6 @@ struct ViewEquality { } /* end namespace checkpoint */ -#endif /*KOKKOS_ENABLED_CHECKPOINT*/ +#endif /*MAGISTRATE_KOKKOS_ENABLED*/ #endif /*INCLUDED_CHECKPOINT_CONTAINER_VIEW_EQUALITY_H*/ diff --git a/src/checkpoint/container/view_serialize.h b/src/checkpoint/container/view_serialize.h index a753670e..e1d1f61a 100644 --- a/src/checkpoint/container/view_serialize.h +++ b/src/checkpoint/container/view_serialize.h @@ -50,7 +50,7 @@ #include "checkpoint/container/view_traverse_manual.h" #include "checkpoint/container/view_traverse_ndim.h" -#if KOKKOS_ENABLED_CHECKPOINT +#if MAGISTRATE_KOKKOS_ENABLED #include #include @@ -62,7 +62,7 @@ #define CHECKPOINT_KOKKOS_WITHOUTINIT #endif -#if KOKKOS_KERNELS_ENABLED +#if MAGISTRATE_KOKKOS_KERNELS_ENABLED #include #include #endif @@ -588,7 +588,7 @@ void serializeContentsOnly(SerializerT& s, Kokkos::View& v) { deepCopyWithLocalFence(v, values); } -#if KOKKOS_KERNELS_ENABLED +#if MAGISTRATE_KOKKOS_KERNELS_ENABLED template< typename Serializer, typename T, typename... Ts > inline void serialize( Serializer &s, Kokkos::StaticCrsGraph &graph ) { s | graph.entries | graph.row_map | graph.row_block_offsets; @@ -611,6 +611,6 @@ inline void serialize( Serializer &s, KokkosSparse::CrsMatrix &matrix } /* end namespace checkpoint */ -#endif /*KOKKOS_ENABLED_CHECKPOINT*/ +#endif /*MAGISTRATE_KOKKOS_ENABLED*/ #endif /*INCLUDED_CHECKPOINT_CONTAINER_VIEW_SERIALIZE_H*/ diff --git a/src/checkpoint/container/view_traits_extract.h b/src/checkpoint/container/view_traits_extract.h index cc3a7756..63a37c6f 100644 --- a/src/checkpoint/container/view_traits_extract.h +++ b/src/checkpoint/container/view_traits_extract.h @@ -47,7 +47,7 @@ #include "checkpoint/common.h" #include "checkpoint/serializers/serializers_headers.h" -#if KOKKOS_ENABLED_CHECKPOINT +#if MAGISTRATE_KOKKOS_ENABLED #include #include @@ -117,6 +117,6 @@ struct CountDims { } /* end namespace checkpoint */ -#endif /*KOKKOS_ENABLED_CHECKPOINT*/ +#endif /*MAGISTRATE_KOKKOS_ENABLED*/ #endif /*INCLUDED_CHECKPOINT_CONTAINER_VIEW_TRAITS_EXTRACT_H*/ diff --git a/src/checkpoint/container/view_traverse_manual.h b/src/checkpoint/container/view_traverse_manual.h index 45522a86..5dd8f07f 100644 --- a/src/checkpoint/container/view_traverse_manual.h +++ b/src/checkpoint/container/view_traverse_manual.h @@ -48,7 +48,7 @@ #include "checkpoint/serializers/serializers_headers.h" #include "checkpoint/container/view_traits_extract.h" -#if KOKKOS_ENABLED_CHECKPOINT +#if MAGISTRATE_KOKKOS_ENABLED #include #include @@ -345,6 +345,6 @@ struct TraverseManual { } /* end namespace checkpoint */ -#endif /*KOKKOS_ENABLED_CHECKPOINT*/ +#endif /*MAGISTRATE_KOKKOS_ENABLED*/ #endif /*INCLUDED_CHECKPOINT_CONTAINER_VIEW_TRAVERSE_MANUAL_H*/ diff --git a/src/checkpoint/container/view_traverse_ndim.h b/src/checkpoint/container/view_traverse_ndim.h index ea9b0639..d41d6ce5 100644 --- a/src/checkpoint/container/view_traverse_ndim.h +++ b/src/checkpoint/container/view_traverse_ndim.h @@ -48,7 +48,7 @@ #include "checkpoint/serializers/serializers_headers.h" #include "checkpoint/container/view_traits_extract.h" -#if KOKKOS_ENABLED_CHECKPOINT +#if MAGISTRATE_KOKKOS_ENABLED #include #include @@ -274,6 +274,6 @@ struct TraverseRecursive { } /* end namespace checkpoint */ -#endif /*KOKKOS_ENABLED_CHECKPOINT*/ +#endif /*MAGISTRATE_KOKKOS_ENABLED*/ #endif /*INCLUDED_CHECKPOINT_CONTAINER_VIEW_TRAVERSE_NDIM_H*/ diff --git a/tests/unit/main.cc b/tests/unit/main.cc index 88c792a7..a6215806 100644 --- a/tests/unit/main.cc +++ b/tests/unit/main.cc @@ -50,7 +50,7 @@ #endif #include "test_harness.h" -#if KOKKOS_ENABLED_CHECKPOINT +#if MAGISTRATE_KOKKOS_ENABLED #include #endif @@ -72,14 +72,14 @@ int main(int argc, char **argv) { int ret = 0; { -#if KOKKOS_ENABLED_CHECKPOINT +#if MAGISTRATE_KOKKOS_ENABLED Kokkos::initialize(); #endif checkpoint::tests::unit::TestHarness::store_cmdline_args(argc, argv); ret = RUN_ALL_TESTS(); -#if KOKKOS_ENABLED_CHECKPOINT +#if MAGISTRATE_KOKKOS_ENABLED Kokkos::finalize(); #endif } diff --git a/tests/unit/test_commons.h b/tests/unit/test_commons.h index 41792e6f..c8df5aa8 100644 --- a/tests/unit/test_commons.h +++ b/tests/unit/test_commons.h @@ -49,7 +49,7 @@ #include #include -#if KOKKOS_ENABLED_CHECKPOINT +#if MAGISTRATE_KOKKOS_ENABLED #include #include @@ -88,7 +88,7 @@ static void compareBasic(ViewT const& k1, ViewT const& k2) { EqualityType::template compareMeta(k1,k2); } -#if KOKKOS_ENABLED_CHECKPOINT +#if MAGISTRATE_KOKKOS_ENABLED template struct KokkosViewTest : ::testing::TestWithParam { }; #endif diff --git a/tests/unit/test_footprinter.cc b/tests/unit/test_footprinter.cc index ec0669df..4cfc1af2 100644 --- a/tests/unit/test_footprinter.cc +++ b/tests/unit/test_footprinter.cc @@ -634,7 +634,7 @@ TEST_F(TestFootprinter, test_no_serialize) { ); } -#if KOKKOS_ENABLED_CHECKPOINT +#if MAGISTRATE_KOKKOS_ENABLED TEST_F(TestFootprinter, test_kokkos_unordered_map) { // empty map { @@ -698,6 +698,6 @@ TEST_F(TestFootprinter, test_kokkos_complex) { } -#endif /*KOKKOS_ENABLED_CHECKPOINT*/ +#endif /*MAGISTRATE_KOKKOS_ENABLED*/ }}} // end namespace checkpoint::tests::unit diff --git a/tests/unit/test_kokkos_integration_commons.h b/tests/unit/test_kokkos_integration_commons.h index 39bfe427..8fd46db6 100644 --- a/tests/unit/test_kokkos_integration_commons.h +++ b/tests/unit/test_kokkos_integration_commons.h @@ -78,7 +78,7 @@ struct Data : BaseData { using Kokkos_ViewType2 = ::Kokkos::View; using Kokkos_ViewType3 = ::Kokkos::View; using Kokkos_ViewType4 = ::Kokkos::View; - #if KOKKOS_KERNELS_ENABLED + #if MAGISTRATE_KOKKOS_KERNELS_ENABLED using Kokkos_CrsType = ::Kokkos::StaticCrsGraph; using Kokkos_CrsMatrix = ::KokkosSparse::CrsMatrix; #endif @@ -122,7 +122,7 @@ struct Data : BaseData { v3 = v3_tmp; v4 = v4_tmp; - #if KOKKOS_KERNELS_ENABLED + #if MAGISTRATE_KOKKOS_KERNELS_ENABLED std::vector< std::vector< int > > graph( d1_a ); for ( size_t i = 0 ; i < d1_a; ++i ) { @@ -207,7 +207,7 @@ struct Data : BaseData { EXPECT_EQ(in.v4.operator()(i,1), v4val(i,1)); } - #if KOKKOS_KERNELS_ENABLED + #if MAGISTRATE_KOKKOS_KERNELS_ENABLED std::vector< std::vector< int > > graph( d1_a ); for ( size_t i = 0 ; i < d1_a; ++i ) { @@ -251,7 +251,7 @@ struct Data : BaseData { s | vec; s | val1 | val2; s | v0 | v1 | v2 | v3 | v4; - #if KOKKOS_KERNELS_ENABLED + #if MAGISTRATE_KOKKOS_KERNELS_ENABLED s | crs; s | crs_mat; #endif @@ -265,7 +265,7 @@ struct Data : BaseData { Kokkos_ViewType2 v2; Kokkos_ViewType3 v3; Kokkos_ViewType4 v4; - #if KOKKOS_KERNELS_ENABLED + #if MAGISTRATE_KOKKOS_KERNELS_ENABLED Kokkos_CrsType crs; Kokkos_CrsMatrix crs_mat; #endif diff --git a/tests/unit/test_kokkos_serialize_0d.cc b/tests/unit/test_kokkos_serialize_0d.cc index e0406703..55cda235 100644 --- a/tests/unit/test_kokkos_serialize_0d.cc +++ b/tests/unit/test_kokkos_serialize_0d.cc @@ -40,7 +40,7 @@ // ***************************************************************************** //@HEADER */ -#if KOKKOS_ENABLED_CHECKPOINT +#if MAGISTRATE_KOKKOS_ENABLED #include "test_harness.h" #include "test_commons.h" diff --git a/tests/unit/test_kokkos_serialize_1d.cc b/tests/unit/test_kokkos_serialize_1d.cc index bad7f601..6e3f7366 100644 --- a/tests/unit/test_kokkos_serialize_1d.cc +++ b/tests/unit/test_kokkos_serialize_1d.cc @@ -40,7 +40,7 @@ // ***************************************************************************** //@HEADER */ -#if KOKKOS_ENABLED_CHECKPOINT +#if MAGISTRATE_KOKKOS_ENABLED #include "test_commons.h" #include "test_kokkos_1d_commons.h" diff --git a/tests/unit/test_kokkos_serialize_2d.cc b/tests/unit/test_kokkos_serialize_2d.cc index 33eb853d..64875af2 100644 --- a/tests/unit/test_kokkos_serialize_2d.cc +++ b/tests/unit/test_kokkos_serialize_2d.cc @@ -40,7 +40,7 @@ // ***************************************************************************** //@HEADER */ -#if KOKKOS_ENABLED_CHECKPOINT +#if MAGISTRATE_KOKKOS_ENABLED #include "test_harness.h" #include "test_commons.h" diff --git a/tests/unit/test_kokkos_serialize_3d_left.cc b/tests/unit/test_kokkos_serialize_3d_left.cc index 3ca6d83d..cdedb459 100644 --- a/tests/unit/test_kokkos_serialize_3d_left.cc +++ b/tests/unit/test_kokkos_serialize_3d_left.cc @@ -40,7 +40,7 @@ // ***************************************************************************** //@HEADER */ -#if KOKKOS_ENABLED_CHECKPOINT +#if MAGISTRATE_KOKKOS_ENABLED #include "test_harness.h" #include "test_commons.h" diff --git a/tests/unit/test_kokkos_serialize_3d_right.cc b/tests/unit/test_kokkos_serialize_3d_right.cc index 3a57a536..78526ad7 100644 --- a/tests/unit/test_kokkos_serialize_3d_right.cc +++ b/tests/unit/test_kokkos_serialize_3d_right.cc @@ -40,7 +40,7 @@ // ***************************************************************************** //@HEADER */ -#if KOKKOS_ENABLED_CHECKPOINT +#if MAGISTRATE_KOKKOS_ENABLED #include "test_harness.h" #include "test_commons.h" diff --git a/tests/unit/test_kokkos_serialize_3d_stride.cc b/tests/unit/test_kokkos_serialize_3d_stride.cc index 7a2fa1e9..3dd3d6f1 100644 --- a/tests/unit/test_kokkos_serialize_3d_stride.cc +++ b/tests/unit/test_kokkos_serialize_3d_stride.cc @@ -40,7 +40,7 @@ // ***************************************************************************** //@HEADER */ -#if KOKKOS_ENABLED_CHECKPOINT +#if MAGISTRATE_KOKKOS_ENABLED #include "test_harness.h" #include "test_commons.h" diff --git a/tests/unit/test_kokkos_serialize_complex.cc b/tests/unit/test_kokkos_serialize_complex.cc index f3b5e79d..69fcd7ad 100644 --- a/tests/unit/test_kokkos_serialize_complex.cc +++ b/tests/unit/test_kokkos_serialize_complex.cc @@ -41,7 +41,7 @@ //@HEADER */ -#if KOKKOS_ENABLED_CHECKPOINT +#if MAGISTRATE_KOKKOS_ENABLED #include "test_commons.h" @@ -76,4 +76,4 @@ TEST_F(KokkosComplexTest, test_kokkos_complex) { }}} // namespace checkpoint::tests::unit -#endif /*KOKKOS_ENABLED_CHECKPOINT*/ +#endif /*MAGISTRATE_KOKKOS_ENABLED*/ diff --git a/tests/unit/test_kokkos_serialize_dynrankview.cc b/tests/unit/test_kokkos_serialize_dynrankview.cc index 86ee0285..a7237afb 100644 --- a/tests/unit/test_kokkos_serialize_dynrankview.cc +++ b/tests/unit/test_kokkos_serialize_dynrankview.cc @@ -40,7 +40,7 @@ // ***************************************************************************** //@HEADER */ -#if KOKKOS_ENABLED_CHECKPOINT +#if MAGISTRATE_KOKKOS_ENABLED #include "test_commons.h" #include "test_harness.h" diff --git a/tests/unit/test_kokkos_serialize_integration.cc b/tests/unit/test_kokkos_serialize_integration.cc index c2f93f72..8c444d77 100644 --- a/tests/unit/test_kokkos_serialize_integration.cc +++ b/tests/unit/test_kokkos_serialize_integration.cc @@ -40,7 +40,7 @@ // ***************************************************************************** //@HEADER */ -#if KOKKOS_ENABLED_CHECKPOINT +#if MAGISTRATE_KOKKOS_ENABLED #include "test_harness.h" #include "test_commons.h" diff --git a/tests/unit/test_kokkos_serialize_nd.cc b/tests/unit/test_kokkos_serialize_nd.cc index de817391..c82b9211 100644 --- a/tests/unit/test_kokkos_serialize_nd.cc +++ b/tests/unit/test_kokkos_serialize_nd.cc @@ -40,7 +40,7 @@ // ***************************************************************************** //@HEADER */ -#if KOKKOS_ENABLED_CHECKPOINT +#if MAGISTRATE_KOKKOS_ENABLED #include "test_harness.h" #include "test_commons.h" diff --git a/tests/unit/test_kokkos_serialize_pair.cc b/tests/unit/test_kokkos_serialize_pair.cc index 8b243d17..1857c9df 100644 --- a/tests/unit/test_kokkos_serialize_pair.cc +++ b/tests/unit/test_kokkos_serialize_pair.cc @@ -41,7 +41,7 @@ //@HEADER */ -#if KOKKOS_ENABLED_CHECKPOINT +#if MAGISTRATE_KOKKOS_ENABLED #include "test_commons.h" @@ -79,4 +79,4 @@ TEST_F(KokkosPairTest, test_kokkos_pair) { }}} // namespace checkpoint::tests::unit -#endif /*KOKKOS_ENABLED_CHECKPOINT*/ +#endif /*MAGISTRATE_KOKKOS_ENABLED*/ diff --git a/tests/unit/test_kokkos_serialize_special.cc b/tests/unit/test_kokkos_serialize_special.cc index 5d1f4303..4ab8d407 100644 --- a/tests/unit/test_kokkos_serialize_special.cc +++ b/tests/unit/test_kokkos_serialize_special.cc @@ -40,7 +40,7 @@ // ***************************************************************************** //@HEADER */ -#if KOKKOS_ENABLED_CHECKPOINT +#if MAGISTRATE_KOKKOS_ENABLED #include "test_harness.h" #include "test_commons.h" diff --git a/tests/unit/test_kokkos_serialize_unordered_map.cc b/tests/unit/test_kokkos_serialize_unordered_map.cc index 60fb8aff..62078377 100644 --- a/tests/unit/test_kokkos_serialize_unordered_map.cc +++ b/tests/unit/test_kokkos_serialize_unordered_map.cc @@ -41,7 +41,7 @@ //@HEADER */ -#if KOKKOS_ENABLED_CHECKPOINT +#if MAGISTRATE_KOKKOS_ENABLED #include "test_commons.h" @@ -109,4 +109,4 @@ TEST_F(KokkosUnorderedMapTest, test_kokkos_unordered_map) { }}} // namespace checkpoint::tests::unit -#endif /*KOKKOS_ENABLED_CHECKPOINT*/ +#endif /*MAGISTRATE_KOKKOS_ENABLED*/ diff --git a/tests/unit/tests_mpi/test_kokkos_serialize_0d_mpi.cc b/tests/unit/tests_mpi/test_kokkos_serialize_0d_mpi.cc index efd7f7ee..f23c1b07 100644 --- a/tests/unit/tests_mpi/test_kokkos_serialize_0d_mpi.cc +++ b/tests/unit/tests_mpi/test_kokkos_serialize_0d_mpi.cc @@ -40,7 +40,7 @@ // ***************************************************************************** //@HEADER */ -#if KOKKOS_ENABLED_CHECKPOINT +#if MAGISTRATE_KOKKOS_ENABLED #include "test_kokkos_0d_commons.h" #include "tests_mpi/test_commons_mpi.h" diff --git a/tests/unit/tests_mpi/test_kokkos_serialize_1d_mpi.cc b/tests/unit/tests_mpi/test_kokkos_serialize_1d_mpi.cc index ddb53452..7d941c5b 100644 --- a/tests/unit/tests_mpi/test_kokkos_serialize_1d_mpi.cc +++ b/tests/unit/tests_mpi/test_kokkos_serialize_1d_mpi.cc @@ -40,7 +40,7 @@ // ***************************************************************************** //@HEADER */ -#if KOKKOS_ENABLED_CHECKPOINT +#if MAGISTRATE_KOKKOS_ENABLED #include "test_kokkos_1d_commons.h" #include "tests_mpi/test_commons_mpi.h" diff --git a/tests/unit/tests_mpi/test_kokkos_serialize_2d_mpi_left.cc b/tests/unit/tests_mpi/test_kokkos_serialize_2d_mpi_left.cc index 4147e380..c9de5c01 100644 --- a/tests/unit/tests_mpi/test_kokkos_serialize_2d_mpi_left.cc +++ b/tests/unit/tests_mpi/test_kokkos_serialize_2d_mpi_left.cc @@ -40,7 +40,7 @@ // ***************************************************************************** //@HEADER */ -#if KOKKOS_ENABLED_CHECKPOINT +#if MAGISTRATE_KOKKOS_ENABLED #include "test_kokkos_2d_commons.h" #include "tests_mpi/test_commons_mpi.h" diff --git a/tests/unit/tests_mpi/test_kokkos_serialize_2d_mpi_right.cc b/tests/unit/tests_mpi/test_kokkos_serialize_2d_mpi_right.cc index 65676cdc..02e39279 100644 --- a/tests/unit/tests_mpi/test_kokkos_serialize_2d_mpi_right.cc +++ b/tests/unit/tests_mpi/test_kokkos_serialize_2d_mpi_right.cc @@ -40,7 +40,7 @@ // ***************************************************************************** //@HEADER */ -#if KOKKOS_ENABLED_CHECKPOINT +#if MAGISTRATE_KOKKOS_ENABLED #include "test_kokkos_2d_commons.h" #include "tests_mpi/test_commons_mpi.h" diff --git a/tests/unit/tests_mpi/test_kokkos_serialize_2d_mpi_stride.cc b/tests/unit/tests_mpi/test_kokkos_serialize_2d_mpi_stride.cc index 8581bb72..12ff1ec8 100644 --- a/tests/unit/tests_mpi/test_kokkos_serialize_2d_mpi_stride.cc +++ b/tests/unit/tests_mpi/test_kokkos_serialize_2d_mpi_stride.cc @@ -40,7 +40,7 @@ // ***************************************************************************** //@HEADER */ -#if KOKKOS_ENABLED_CHECKPOINT +#if MAGISTRATE_KOKKOS_ENABLED #include "test_kokkos_2d_commons.h" #include "tests_mpi/test_commons_mpi.h" diff --git a/tests/unit/tests_mpi/test_kokkos_serialize_3d_mpi_left.cc b/tests/unit/tests_mpi/test_kokkos_serialize_3d_mpi_left.cc index eace4609..5c6c762a 100644 --- a/tests/unit/tests_mpi/test_kokkos_serialize_3d_mpi_left.cc +++ b/tests/unit/tests_mpi/test_kokkos_serialize_3d_mpi_left.cc @@ -41,7 +41,7 @@ //@HEADER */ -#if KOKKOS_ENABLED_CHECKPOINT +#if MAGISTRATE_KOKKOS_ENABLED #include "test_kokkos_3d_commons.h" #include "tests_mpi/test_commons_mpi.h" diff --git a/tests/unit/tests_mpi/test_kokkos_serialize_3d_mpi_right.cc b/tests/unit/tests_mpi/test_kokkos_serialize_3d_mpi_right.cc index 0e6c28b0..4e5d1b5d 100644 --- a/tests/unit/tests_mpi/test_kokkos_serialize_3d_mpi_right.cc +++ b/tests/unit/tests_mpi/test_kokkos_serialize_3d_mpi_right.cc @@ -41,7 +41,7 @@ //@HEADER */ -#if KOKKOS_ENABLED_CHECKPOINT +#if MAGISTRATE_KOKKOS_ENABLED #include "test_kokkos_3d_commons.h" #include "tests_mpi/test_commons_mpi.h" diff --git a/tests/unit/tests_mpi/test_kokkos_serialize_3d_mpi_stride.cc b/tests/unit/tests_mpi/test_kokkos_serialize_3d_mpi_stride.cc index 92d43813..c608e607 100644 --- a/tests/unit/tests_mpi/test_kokkos_serialize_3d_mpi_stride.cc +++ b/tests/unit/tests_mpi/test_kokkos_serialize_3d_mpi_stride.cc @@ -41,7 +41,7 @@ //@HEADER */ -#if KOKKOS_ENABLED_CHECKPOINT +#if MAGISTRATE_KOKKOS_ENABLED #include "test_kokkos_3d_commons.h" #include "tests_mpi/test_commons_mpi.h" diff --git a/tests/unit/tests_mpi/test_kokkos_serialize_integration_mpi.cc b/tests/unit/tests_mpi/test_kokkos_serialize_integration_mpi.cc index b1f822bf..ea22df42 100644 --- a/tests/unit/tests_mpi/test_kokkos_serialize_integration_mpi.cc +++ b/tests/unit/tests_mpi/test_kokkos_serialize_integration_mpi.cc @@ -40,7 +40,7 @@ // ***************************************************************************** //@HEADER */ -#if KOKKOS_ENABLED_CHECKPOINT +#if MAGISTRATE_KOKKOS_ENABLED #include "test_kokkos_integration_commons.h" #include "test_kokkos_1d_commons.h"