# Copyright (c) 2014-2015 Hartmut Kaiser
# Copyright (c) 2011 Bryce Adelstein-Lelbach
#
# SPDX-License-Identifier: BSL-1.0
# Distributed under the Boost Software License, Version 1.0. (See accompanying
# file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)

set(benchmarks)

if(HPX_CXX_STANDARD GREATER_EQUAL 17)
  list(APPEND benchmarks synchronize)
endif()

set(synchronize_CUDA ON)

foreach(benchmark ${benchmarks})
  if(${${benchmark}_CUDA})
    set(sources ${benchmark}.cu)
  else()
    set(sources ${benchmark}.cpp)
  endif()

  source_group("Source Files" FILES ${sources})

  # add example executable
  add_hpx_executable(
    ${benchmark}_test INTERNAL_FLAGS
    SOURCES ${sources} ${${benchmark}_FLAGS}
    EXCLUDE_FROM_ALL
    HPX_PREFIX ${HPX_BUILD_PREFIX}
    FOLDER "Benchmarks/Modules/Full/Compute/Cuda"
  )

  add_hpx_performance_test(
    "modules.compute_cuda" ${benchmark} ${${benchmark}_PARAMETERS}
  )
endforeach()
