RMM
23.12
RAPIDS Memory Manager
|
#include <rmm/cuda_stream_view.hpp>
#include <rmm/detail/aligned.hpp>
#include <rmm/detail/cuda_util.hpp>
#include <rmm/detail/error.hpp>
#include <rmm/detail/logging_assert.hpp>
#include <rmm/logger.hpp>
#include <rmm/mr/device/detail/coalescing_free_list.hpp>
#include <rmm/mr/device/detail/stream_ordered_memory_resource.hpp>
#include <rmm/mr/device/device_memory_resource.hpp>
#include <rmm/detail/thrust_namespace.h>
#include <thrust/iterator/counting_iterator.h>
#include <thrust/iterator/transform_iterator.h>
#include <thrust/optional.h>
#include <fmt/core.h>
#include <cuda_runtime_api.h>
#include <algorithm>
#include <cstddef>
#include <iostream>
#include <map>
#include <mutex>
#include <numeric>
#include <set>
#include <thread>
#include <unordered_map>
#include <vector>
Go to the source code of this file.
Classes | |
struct | rmm::mr::detail::maybe_remove_property< PoolResource, Upstream, Property, class > |
A helper class to remove the device_accessible property. More... | |
struct | rmm::mr::detail::maybe_remove_property< PoolResource, Upstream, Property, cuda::std::enable_if_t<!cuda::has_property< Upstream, Property > > > |
Specialization of maybe_remove_property to not propagate nonexistent properties. More... | |
class | rmm::mr::pool_memory_resource< Upstream > |
A coalescing best-fit suballocator which uses a pool of memory allocated from an upstream memory_resource. More... | |