| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
|
|
|
|
| |
| |
| |
| |
|
|
| #pragma once |
|
|
| #include <thrust/detail/config.h> |
|
|
| #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 |
| #include <thrust/device_ptr.h> |
| #include <thrust/mr/allocator.h> |
| #include <thrust/mr/device_memory_resource.h> |
|
|
| #include <limits> |
| #include <stdexcept> |
|
|
| THRUST_NAMESPACE_BEGIN |
|
|
| |
| |
| |
| |
|
|
| |
| |
| |
| |
| template<typename Upstream> |
| class device_ptr_memory_resource final |
| : public thrust::mr::memory_resource< |
| device_ptr<void> |
| > |
| { |
| typedef typename Upstream::pointer upstream_ptr; |
|
|
| public: |
| |
| |
| |
| __host__ |
| device_ptr_memory_resource() : m_upstream(mr::get_global_resource<Upstream>()) |
| { |
| } |
|
|
| |
| |
| |
| |
| __host__ |
| device_ptr_memory_resource(Upstream * upstream) : m_upstream(upstream) |
| { |
| } |
|
|
| THRUST_NODISCARD __host__ |
| virtual pointer do_allocate(std::size_t bytes, std::size_t alignment = THRUST_MR_DEFAULT_ALIGNMENT) override |
| { |
| return pointer(m_upstream->do_allocate(bytes, alignment).get()); |
| } |
|
|
| __host__ |
| virtual void do_deallocate(pointer p, std::size_t bytes, std::size_t alignment) override |
| { |
| m_upstream->do_deallocate(upstream_ptr(p.get()), bytes, alignment); |
| } |
|
|
| private: |
| Upstream * m_upstream; |
| }; |
|
|
| |
| |
| |
| |
| |
| template<typename T> |
| class device_allocator |
| : public thrust::mr::stateless_resource_allocator< |
| T, |
| device_ptr_memory_resource<device_memory_resource> |
| > |
| { |
| typedef thrust::mr::stateless_resource_allocator< |
| T, |
| device_ptr_memory_resource<device_memory_resource> |
| > base; |
|
|
| public: |
| |
| |
| |
| |
| |
| template<typename U> |
| struct rebind |
| { |
| |
| |
| typedef device_allocator<U> other; |
| }; |
|
|
| |
| __host__ __device__ |
| device_allocator() {} |
|
|
| |
| __host__ __device__ |
| device_allocator(const device_allocator& other) : base(other) {} |
|
|
| |
| template<typename U> |
| __host__ __device__ |
| device_allocator(const device_allocator<U>& other) : base(other) {} |
|
|
| device_allocator & operator=(const device_allocator &) = default; |
|
|
| |
| __host__ __device__ |
| ~device_allocator() {} |
| }; |
|
|
| |
| |
|
|
| THRUST_NAMESPACE_END |
|
|