// SPDX-FileCopyrightText: Copyright (c) 2008-2013, NVIDIA Corporation. All rights reserved. // SPDX-License-Identifier: Apache-2.0 /*! \file device_new.h * \brief Constructs new elements in device memory */ #pragma once #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 #include #include #include #include THRUST_NAMESPACE_BEGIN /*! * \addtogroup memory_management Memory Management * \{ */ /*! \p device_new implements the placement \c new operator for types * resident in device memory. \p device_new calls T's null * constructor on a array of objects in device memory. * No memory is allocated by this function. * * \param p A \p device_ptr to a region of device memory into which * to construct one or many Ts. * \param n The number of objects to construct at \p p. * \return p, casted to T's type. * * \see device_ptr * * \verbatim embed:rst:leading-asterisk * .. versionadded:: 2.2.0 * \endverbatim */ template device_ptr device_new(device_ptr p, const size_t n = 1) { auto* dev_ptr = static_cast(p.get()); // TODO(bgruber): ideally, we would have an thrust::uninitialized_default_construct. Until then, use vector's // infrastructure device_allocator alloc; // not needed for allocation, just for construct() called in value_initialize_range() detail::value_initialize_range(alloc, dev_ptr, n); return device_ptr{dev_ptr}; } /*! \p device_new implements the placement new operator for types * resident in device memory. \p device_new calls T's copy * constructor on a array of objects in device memory. No memory is * allocated by this function. * * \param p A \p device_ptr to a region of device memory into which to * construct one or many Ts. * \param exemplar The value from which to copy. * \param n The number of objects to construct at \p p. * \return p, casted to T's type. * * \see device_ptr * \see fill * * \verbatim embed:rst:leading-asterisk * .. versionadded:: 2.2.0 * \endverbatim */ template device_ptr device_new(device_ptr p, const T& exemplar, const size_t n = 1) { device_ptr result(static_cast(p.get())); // run copy constructors at p here thrust::uninitialized_fill(device, result, result + n, exemplar); return result; } /*! \p device_new implements the new operator for types resident in device memory. * It allocates device memory large enough to hold \p n new objects of type \c T. * * \param n The number of objects to allocate. Defaults to \c 1. * \return A \p device_ptr to the newly allocated region of device memory. * * \verbatim embed:rst:leading-asterisk * .. versionadded:: 2.2.0 * \endverbatim */ template device_ptr device_new(const size_t n = 1) { // call placement new version of device_new return device_new(thrust::device_malloc(n)); } /*! \} // memory_management */ THRUST_NAMESPACE_END