Skip to content

Commit

Permalink
Add more missing #includes
Browse files Browse the repository at this point in the history
  • Loading branch information
hkaiser committed Nov 3, 2024
1 parent 74ea48d commit 7816bc5
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 1 deletion.
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 7816bc5

Please sign in to comment.