File size: 993 Bytes
501e3f2 | 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 | // -*- C++ -*-
//===----------------------------------------------------------------------===//
//
// 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
// SPDX-FileCopyrightText: Copyright (c) 2023 NVIDIA CORPORATION & AFFILIATES.
//
//===----------------------------------------------------------------------===//
#ifndef _LIBCUDACXX___CUDA_LATCH_H
#define _LIBCUDACXX___CUDA_LATCH_H
#ifndef __cuda_std__
#error "<__cuda/latch> should only be included in from <cuda/std/latch>"
#endif // __cuda_std__
_LIBCUDACXX_BEGIN_NAMESPACE_CUDA
template<thread_scope _Sco>
class latch : public _CUDA_VSTD::__latch_base<_Sco> {
public:
_LIBCUDACXX_INLINE_VISIBILITY constexpr
latch(_CUDA_VSTD::ptrdiff_t __count)
: _CUDA_VSTD::__latch_base<_Sco>(__count) {
}
};
_LIBCUDACXX_END_NAMESPACE_CUDA
#endif // _LIBCUDACXX___CUDA_LATCH_H
|