// -*- C++ -*- //===----------------------------------------------------------------------===// // // Part of libcu++, the C++ Standard Library for your entire system, // 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) 2024 NVIDIA CORPORATION & AFFILIATES. // //===----------------------------------------------------------------------===// #ifndef _LIBCUDACXX___MEMORY_ALLOCATE_AT_LEAST_H #define _LIBCUDACXX___MEMORY_ALLOCATE_AT_LEAST_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 _LIBCUDACXX_BEGIN_NAMESPACE_STD #if _CCCL_STD_VER >= 2023 template struct allocation_result { _Pointer ptr; size_t count; }; _LIBCUDACXX_CTAD_SUPPORTED_FOR_TYPE(allocation_result); template _CCCL_NODISCARD _LIBCUDACXX_HIDE_FROM_ABI _LIBCUDACXX_INLINE_VISIBILITY constexpr allocation_result< typename allocator_traits<_Alloc>::pointer> allocate_at_least(_Alloc& __alloc, size_t __n) { if constexpr (requires { __alloc.allocate_at_least(__n); }) { return __alloc.allocate_at_least(__n); } else { return {__alloc.allocate(__n), __n}; } } template _CCCL_NODISCARD _LIBCUDACXX_HIDE_FROM_ABI _LIBCUDACXX_INLINE_VISIBILITY constexpr auto __allocate_at_least(_Alloc& __alloc, size_t __n) { return _CUDA_VSTD::allocate_at_least(__alloc, __n); } #else // ^^^ _CCCL_STD_VER >= 2023 ^^^ / vvv _CCCL_STD_VER < 2023 vvv template struct __allocation_result { _Pointer ptr; size_t count; }; template _CCCL_NODISCARD _LIBCUDACXX_HIDE_FROM_ABI _LIBCUDACXX_INLINE_VISIBILITY constexpr __allocation_result< typename allocator_traits<_Alloc>::pointer> __allocate_at_least(_Alloc& __alloc, size_t __n) { return {__alloc.allocate(__n), __n}; } #endif // _CCCL_STD_VER >= 2023 _LIBCUDACXX_END_NAMESPACE_STD #endif // _LIBCUDACXX___MEMORY_ALLOCATE_AT_LEAST_H