Skip to content

Commit

Permalink
Merge pull request #6530 from STEllAR-GROUP/fixing_e4s
Browse files Browse the repository at this point in the history
Attempt to fixing the E4S HPX tests
  • Loading branch information
hkaiser authored Nov 4, 2024
2 parents 183bd6e + 7816bc5 commit fb989a0
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 2 deletions.
10 changes: 9 additions & 1 deletion libs/core/include_local/include/hpx/compute.hpp.in
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2016-2022 Hartmut Kaiser
// Copyright (c) 2016-2024 Hartmut Kaiser
//
// SPDX-License-Identifier: BSL-1.0
// Distributed under the Boost Software License, Version 1.0. (See accompanying
Expand All @@ -8,4 +8,12 @@

#pragma once

#include <hpx/config.hpp>
#include <hpx/modules/compute_local.hpp>

#if defined(HPX_HAVE_CUDA) || defined(HPX_HAVE_HIP)
#include <hpx/modules/async_cuda.hpp>
#endif
#if defined(HPX_WITH_SYCL)
#include <hpx/modules/async_sycl.hpp>
#endif
10 changes: 9 additions & 1 deletion libs/full/include/include/hpx/compute.hpp
Original file line number Diff line number Diff line change
@@ -1,10 +1,18 @@
// Copyright (c) 2023 Hartmut Kaiser
// Copyright (c) 2023-2024 Hartmut Kaiser
//
// 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)

#pragma once

#include <hpx/config.hpp>
#include <hpx/modules/compute.hpp>
#include <hpx/modules/compute_local.hpp>

#if defined(HPX_HAVE_CUDA) || defined(HPX_HAVE_HIP)
#include <hpx/modules/async_cuda.hpp>
#endif
#if defined(HPX_WITH_SYCL)
#include <hpx/modules/async_sycl.hpp>
#endif
7 changes: 7 additions & 0 deletions libs/full/include/include/hpx/include/compute.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,10 @@
#include <hpx/compute/host.hpp>
#include <hpx/compute_local/serialization/vector.hpp>
#include <hpx/compute_local/vector.hpp>

#if defined(HPX_HAVE_CUDA) || defined(HPX_HAVE_HIP)
#include <hpx/modules/async_cuda.hpp>
#endif
#if defined(HPX_WITH_SYCL)
#include <hpx/modules/async_sycl.hpp>
#endif

0 comments on commit fb989a0

Please sign in to comment.