From d21465221dc464e4afc5693f5ccdbd553fc4f85a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gregor=20Dai=C3=9F?= Date: Sat, 1 Jun 2024 17:16:35 +0200 Subject: [PATCH] Fix naming --- CMakeLists.txt | 4 ++-- examples/kernel-aggregation-with-hpx-kokkos.cpp | 2 +- examples/{cuda_vector_add.cu => recycling-with-hpx-cuda.cu} | 0 examples/recycling-with-hpx-kokkos.cpp | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) rename examples/{cuda_vector_add.cu => recycling-with-hpx-cuda.cu} (100%) diff --git a/CMakeLists.txt b/CMakeLists.txt index fb30510..24be243 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -255,12 +255,12 @@ install(EXPORT CPPuddle NAMESPACE CPPuddle:: DESTINATION ${CMAKE_INSTALL_PREFIX} if (CPPUDDLE_WITH_TESTS) if (CPPUDDLE_WITH_CUDA) add_hpx_executable( - cuda_vector_add + recycling-with-hpx-cuda DEPENDENCIES Boost::boost Boost::program_options HPX::hpx buffer_manager stream_manager COMPONENT_DEPENDENCIES iostreams SOURCES - examples/cuda_vector_add.cu + examples/recycling-with-hpx-cuda.cu ) if (CPPUDDLE_WITH_KOKKOS) diff --git a/examples/kernel-aggregation-with-hpx-kokkos.cpp b/examples/kernel-aggregation-with-hpx-kokkos.cpp index d734f8f..a0695b7 100644 --- a/examples/kernel-aggregation-with-hpx-kokkos.cpp +++ b/examples/kernel-aggregation-with-hpx-kokkos.cpp @@ -454,7 +454,7 @@ bool process_cli_options(int argc, char *argv[], size_t &entries_per_task, return false; } - std::cout << "CPPuddle Recycling Sample (Vector-Add / CUDA edition)" << std::endl; + std::cout << "CPPuddle Aggregation Sample (Vector-Add / Kokkos edition)" << std::endl; std::cout << "=====================================================" << std::endl; if (vm.count("help") == 0u) { hpx::cout << "Running with parameters:" << std::endl diff --git a/examples/cuda_vector_add.cu b/examples/recycling-with-hpx-cuda.cu similarity index 100% rename from examples/cuda_vector_add.cu rename to examples/recycling-with-hpx-cuda.cu diff --git a/examples/recycling-with-hpx-kokkos.cpp b/examples/recycling-with-hpx-kokkos.cpp index fde4fa6..1a3db08 100644 --- a/examples/recycling-with-hpx-kokkos.cpp +++ b/examples/recycling-with-hpx-kokkos.cpp @@ -381,7 +381,7 @@ bool process_cli_options(int argc, char *argv[], size_t &entries_per_task, return false; } - std::cout << "CPPuddle Recycling Sample (Vector-Add / CUDA edition)" << std::endl; + std::cout << "CPPuddle Recycling Sample (Vector-Add / Kokkos edition)" << std::endl; std::cout << "=====================================================" << std::endl; if (vm.count("help") == 0u) { hpx::cout << "Running with parameters:" << std::endl