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 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129
|
// -*- C++ -*-
//===--------------------------- latch -----------------------------------===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
#ifndef _LIBCUDACXX_LATCH
#define _LIBCUDACXX_LATCH
/*
latch synopsis
namespace std
{
class latch
{
public:
constexpr explicit latch(ptrdiff_t __expected);
~latch();
latch(const latch&) = delete;
latch& operator=(const latch&) = delete;
void count_down(ptrdiff_t __update = 1);
bool try_wait() const noexcept;
void wait() const;
void arrive_and_wait(ptrdiff_t __update = 1);
private:
ptrdiff_t __counter; // exposition only
};
}
*/
#ifndef __cuda_std__
#include <__config>
#include <__threading_support>
#include <atomic>
#include <cassert>
#include <__pragma_push>
#endif
#if defined(_LIBCUDACXX_USE_PRAGMA_GCC_SYSTEM_HEADER)
#pragma GCC system_header
#endif
#ifdef _LIBCUDACXX_HAS_NO_THREADS
# error <latch> is not supported on this single threaded system
#endif
#if _LIBCUDACXX_STD_VER < 11
# error <latch> is requires C++11 or later
#endif
_LIBCUDACXX_BEGIN_NAMESPACE_STD
# if _LIBCUDACXX_CUDA_ABI_VERSION < 3
# define _LIBCUDACXX_LATCH_ALIGNMENT alignas(64)
# else
# define _LIBCUDACXX_LATCH_ALIGNMENT
# endif
template<int _Sco = 0>
class __latch_base
{
_LIBCUDACXX_LATCH_ALIGNMENT __atomic_base<ptrdiff_t, _Sco> __counter;
public:
inline _LIBCUDACXX_INLINE_VISIBILITY _LIBCUDACXX_CONSTEXPR
explicit __latch_base(ptrdiff_t __expected)
: __counter(__expected) { }
~__latch_base() = default;
__latch_base(const __latch_base&) = delete;
__latch_base& operator=(const __latch_base&) = delete;
inline _LIBCUDACXX_INLINE_VISIBILITY
void count_down(ptrdiff_t __update = 1)
{
assert(__update > 0);
auto const __old = __counter.fetch_sub(__update, memory_order_release);
assert(__old >= __update);
if(__old == __update)
__counter.notify_all();
}
inline _LIBCUDACXX_INLINE_VISIBILITY
bool try_wait() const noexcept
{
return __counter.load(memory_order_acquire) == 0;
}
inline _LIBCUDACXX_INLINE_VISIBILITY
void wait() const
{
while(1) {
auto const __current = __counter.load(memory_order_acquire);
if(__current == 0)
return;
__counter.wait(__current, memory_order_relaxed)
;
}
}
inline _LIBCUDACXX_INLINE_VISIBILITY
void arrive_and_wait(ptrdiff_t __update = 1)
{
count_down(__update);
wait();
}
_LIBCUDACXX_INLINE_VISIBILITY
static constexpr ptrdiff_t max() noexcept
{
return numeric_limits<ptrdiff_t>::max();
}
};
using latch = __latch_base<>;
_LIBCUDACXX_END_NAMESPACE_STD
#ifndef __cuda_std__
#include <__pragma_pop>
#endif //__cuda_std__
#endif //_LIBCUDACXX_LATCH
|