7 #include <rmm/detail/export.hpp>
8 #include <rmm/mr/detail/thread_safe_resource_adaptor_impl.hpp>
11 #include <cuda/memory_resource>
16 namespace RMM_NAMESPACE {
34 :
public cuda::mr::shared_resource<detail::thread_safe_resource_adaptor_impl> {
35 using shared_base = cuda::mr::shared_resource<detail::thread_safe_resource_adaptor_impl>;
38 using lock_t = std::lock_guard<std::mutex>;
44 cuda::mr::device_accessible) noexcept
55 cuda::mr::any_resource<cuda::mr::device_accessible> upstream);
Resource that adapts an upstream resource to be thread safe.
Definition: thread_safe_resource_adaptor.hpp:34
friend void get_property(thread_safe_resource_adaptor const &, cuda::mr::device_accessible) noexcept
Enables the cuda::mr::device_accessible property.
Definition: thread_safe_resource_adaptor.hpp:43
device_async_resource_ref get_upstream_resource() const noexcept
rmm::device_async_resource_ref to the upstream resource
thread_safe_resource_adaptor(cuda::mr::any_resource< cuda::mr::device_accessible > upstream)
Construct a new thread safe resource adaptor using upstream to satisfy allocation requests.
std::lock_guard< std::mutex > lock_t
Type of lock used to synchronize access.
Definition: thread_safe_resource_adaptor.hpp:38
cuda::mr::resource_ref< cuda::mr::device_accessible > device_async_resource_ref
Alias for a cuda::mr::resource_ref with the property cuda::mr::device_accessible.
Definition: resource_ref.hpp:30