// -*- 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 __CUDA__LATCH_LATCH_H #define __CUDA__LATCH_LATCH_H #include #if defined(_CCCL_IMPLICIT_SYSTEM_HEADER_GCC) # pragma GCC system_header #elif defined(_CCCL_IMPLICIT_SYSTEM_HEADER_CLANG) # pragma clang system_header #elif defined(_CCCL_IMPLICIT_SYSTEM_HEADER_MSVC) # pragma system_header #endif // no system header #include #include #include _CCCL_BEGIN_NAMESPACE_CUDA template class latch : public ::cuda::std::__latch_base<_Sco> { public: _CCCL_HOST_DEVICE_API constexpr latch(::cuda::std::ptrdiff_t __count) : ::cuda::std::__latch_base<_Sco>(__count) {} }; _CCCL_END_NAMESPACE_CUDA #include #endif // __CUDA__LATCH_LATCH_H