1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67
|
// Copyright (c) 2018 NVIDIA Corporation
// Modifications Copyright© 2019-2024 Advanced Micro Devices, Inc. All rights reserved.
// Author: Bryce Adelstein Lelbach <brycelelbach@gmail.com>
//
// Distributed under the Boost Software License v1.0 (boost.org/LICENSE_1_0.txt)
#pragma once
#include <thrust/detail/config.h>
#include <thrust/system/hip/pointer.h>
#include <thrust/system/hip/detail/execution_policy.h>
THRUST_NAMESPACE_BEGIN
namespace system { namespace hip
{
struct ready_event;
template <typename T>
struct ready_future;
struct unique_eager_event;
template <typename T>
struct unique_eager_future;
template <typename... Events>
THRUST_HOST
unique_eager_event when_all(Events&&... evs);
}} // namespace system::hip
namespace hip
{
using thrust::system::hip::ready_event;
using thrust::system::hip::ready_future;
using thrust::system::hip::unique_eager_event;
using event = unique_eager_event;
using thrust::system::hip::unique_eager_future;
template <typename T> using future = unique_eager_future<T>;
using thrust::system::hip::when_all;
} // namespace hip
template <typename DerivedPolicy>
THRUST_HOST
thrust::hip::unique_eager_event
unique_eager_event_type(
thrust::hip::execution_policy<DerivedPolicy> const&
) noexcept;
template <typename T, typename DerivedPolicy>
THRUST_HOST
thrust::hip::unique_eager_future<T>
unique_eager_future_type(
thrust::hip::execution_policy<DerivedPolicy> const&
) noexcept;
THRUST_NAMESPACE_END
#include <thrust/system/hip/detail/future.inl>
|