Skip to content

Commit

Permalink
Fix naming
Browse files Browse the repository at this point in the history
  • Loading branch information
G-071 committed Jun 1, 2024
1 parent 703dc23 commit d214652
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion examples/kernel-aggregation-with-hpx-kokkos.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion examples/recycling-with-hpx-kokkos.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit d214652

Please sign in to comment.