-
Notifications
You must be signed in to change notification settings - Fork 238
Enhanced support for memory-tracking raft resources #3004
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 2 commits
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
e089c20
Enhanced support for memory-tracking resources and owning mr semantics
achirkin 8df9036
Add tests for the memory_stats_resources
achirkin a975b8f
Merge branch 'main' into enh-memory-resources
achirkin 00eb136
Merge branch 'main' into enh-memory-resources
achirkin 053b0c5
Merge branch 'main' into enh-memory-resources
achirkin 8dc1180
Merge branch 'release/26.06' into enh-memory-resources
achirkin 156ac11
Move the resources raft/util -> raft/core
achirkin 615979a
Merge branch 'release/26.06' into enh-memory-resources
achirkin 161eeda
Merge branch 'main' into enh-memory-resources
achirkin f99b72e
Merge remote-tracking branch 'rapidsai/main' into enh-memory-resources
achirkin 868458c
Merge branch 'main' into enh-memory-resources
achirkin File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,237 @@ | ||
| /* | ||
| * SPDX-FileCopyrightText: Copyright (c) 2026, NVIDIA CORPORATION. | ||
| * SPDX-License-Identifier: Apache-2.0 | ||
| */ | ||
| #pragma once | ||
|
|
||
| #include <raft/core/resource/device_memory_resource.hpp> | ||
| #include <raft/core/resource/managed_memory_resource.hpp> | ||
| #include <raft/core/resource/pinned_memory_resource.hpp> | ||
| #include <raft/core/resources.hpp> | ||
| #include <raft/mr/host_device_resource.hpp> | ||
| #include <raft/mr/host_memory_resource.hpp> | ||
| #include <raft/mr/statistics_adaptor.hpp> | ||
|
|
||
| #include <rmm/cuda_stream_view.hpp> | ||
| #include <rmm/mr/per_device_resource.hpp> | ||
| #include <rmm/resource_ref.hpp> | ||
|
|
||
| #include <cuda/stream_ref> | ||
|
|
||
| #include <cstddef> | ||
| #include <cstdint> | ||
| #include <memory> | ||
| #include <utility> | ||
| #include <vector> | ||
|
|
||
| namespace raft { | ||
|
|
||
| /** | ||
| * @brief Snapshot of memory usage across the six tracked resource types. | ||
| * | ||
| * Returned by accessor methods on dry_run_resources and | ||
| * memory_stats_resources (e.g. get_bytes_peak(), get_bytes_current()). | ||
| */ | ||
| struct memory_stats { | ||
| std::size_t device_workspace{0}; | ||
| std::size_t device_large_workspace{0}; | ||
| std::size_t device_global{0}; | ||
| std::size_t device_managed{0}; | ||
| std::size_t host{0}; | ||
| std::size_t host_pinned{0}; | ||
|
|
||
| /** | ||
| * @brief Sum of all memory stats across the six tracked categories. | ||
| * | ||
| * The three resource wrapper classes (dry_run_resources, memory_stats_resources, | ||
| * memory_tracking_resources) guarantee that every category is tracked by its own | ||
| * independent adaptor: each wrapper force-initializes all resources, captures their | ||
| * upstream refs *before* replacing the global device resource, and wraps those | ||
| * originals. Workspace and large-workspace allocations therefore bypass the | ||
| * device-global tracking adaptor and are counted exactly once, making this sum | ||
| * an accurate total when used with stats produced by any of the three wrappers. | ||
| */ | ||
| [[nodiscard]] inline constexpr auto total() const -> std::size_t | ||
| { | ||
| return device_workspace + device_large_workspace + device_global + device_managed + host + | ||
| host_pinned; | ||
| } | ||
| }; | ||
|
|
||
| /** | ||
| * @brief Resources handle that wraps all reachable memory resources with | ||
| * statistics adaptors to track actual allocation usage. | ||
| * | ||
| * Inherits from raft::resources, so it can be passed anywhere a | ||
| * raft::resources& is expected. On construction the handle: | ||
| * - Materializes all tracked resource types (host, device, pinned, | ||
| * managed, workspace, large_workspace). | ||
| * - Takes a snapshot of the original resources to keep them alive. | ||
| * - Wraps each with statistics_adaptor. | ||
| * - Replaces global host and device resources with tracked versions. | ||
| * | ||
| * On destruction the handle restores global resources. | ||
| */ | ||
| class memory_stats_resources : public resources { | ||
| public: | ||
| explicit memory_stats_resources(const resources& existing) | ||
| : resources(existing), | ||
| old_host_(mr::get_default_host_resource()), | ||
| old_device_(rmm::mr::get_current_device_resource_ref()) | ||
| { | ||
| init(); | ||
| } | ||
|
|
||
| ~memory_stats_resources() override | ||
| { | ||
| mr::set_default_host_resource(old_host_); | ||
| rmm::mr::set_current_device_resource(std::move(old_device_)); | ||
| } | ||
|
|
||
| memory_stats_resources(memory_stats_resources const&) = delete; | ||
| memory_stats_resources& operator=(memory_stats_resources const&) = delete; | ||
| memory_stats_resources(memory_stats_resources&&) = delete; | ||
| memory_stats_resources& operator=(memory_stats_resources&&) = delete; | ||
|
|
||
| [[nodiscard]] auto get_bytes_current() const -> memory_stats | ||
| { | ||
| return read_field(&mr::resource_stats::bytes_current); | ||
| } | ||
|
|
||
| [[nodiscard]] auto get_bytes_peak() const -> memory_stats | ||
| { | ||
| return read_field(&mr::resource_stats::bytes_peak); | ||
| } | ||
|
|
||
| [[nodiscard]] auto get_bytes_total_allocated() const -> memory_stats | ||
| { | ||
| return read_field(&mr::resource_stats::bytes_total_allocated); | ||
| } | ||
|
|
||
| [[nodiscard]] auto get_bytes_total_deallocated() const -> memory_stats | ||
| { | ||
| return read_field(&mr::resource_stats::bytes_total_deallocated); | ||
| } | ||
|
|
||
| [[nodiscard]] auto get_num_allocations() const -> memory_stats | ||
| { | ||
| return read_field(&mr::resource_stats::num_allocations); | ||
| } | ||
|
|
||
| [[nodiscard]] auto get_num_deallocations() const -> memory_stats | ||
| { | ||
| return read_field(&mr::resource_stats::num_deallocations); | ||
| } | ||
|
|
||
| private: | ||
| using field_ptr = std::atomic<std::int64_t> mr::resource_stats::*; | ||
|
|
||
| [[nodiscard]] auto read_field(field_ptr field) const -> memory_stats | ||
| { | ||
| auto load = [&](const std::shared_ptr<mr::resource_stats>& s) -> std::size_t { | ||
| return static_cast<std::size_t>((s.get()->*field).load(std::memory_order_relaxed)); | ||
| }; | ||
| return { | ||
| .device_workspace = load(ws_stats_), | ||
| .device_large_workspace = load(lws_stats_), | ||
| .device_global = load(device_stats_), | ||
| .device_managed = load(managed_stats_), | ||
| .host = load(host_stats_), | ||
| .host_pinned = load(pinned_stats_), | ||
| }; | ||
| } | ||
|
|
||
| std::vector<pair_resource> snapshot_; | ||
|
|
||
| raft::mr::host_resource old_host_; | ||
| raft::mr::device_resource old_device_; | ||
|
|
||
| using host_stats_adaptor_t = mr::statistics_adaptor<mr::host_resource_ref>; | ||
| std::unique_ptr<host_stats_adaptor_t> host_adaptor_; | ||
|
|
||
| using device_stats_adaptor_t = mr::statistics_adaptor<rmm::device_async_resource_ref>; | ||
| std::unique_ptr<device_stats_adaptor_t> device_adaptor_; | ||
|
|
||
| std::shared_ptr<mr::resource_stats> host_stats_; | ||
| std::shared_ptr<mr::resource_stats> pinned_stats_; | ||
| std::shared_ptr<mr::resource_stats> managed_stats_; | ||
| std::shared_ptr<mr::resource_stats> ws_stats_; | ||
| std::shared_ptr<mr::resource_stats> lws_stats_; | ||
| std::shared_ptr<mr::resource_stats> device_stats_; | ||
|
|
||
| void init() | ||
| { | ||
| // Independent-counting invariant | ||
| // ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | ||
| // 1. Force-initialize all lazily-created resources (workspace, large workspace, | ||
| // pinned, managed) so that their factories resolve against the *original* | ||
| // global device MR, not a tracking wrapper we install later. | ||
| // 2. Capture every upstream ref while it still points to the original resource. | ||
| // 3. Snapshot the resource map to keep the originals alive. | ||
| // 4. Only *then* replace the global device resource with the tracking bridge. | ||
| // 5. Wrap each captured upstream with a separate statistics_adaptor. | ||
| // | ||
| // Because step 2 happens before step 4, workspace/lws allocations flow through | ||
| // their own adaptor directly to the original device MR, bypassing the device adaptor. | ||
| // Each allocation is therefore counted in exactly one category, and | ||
| // memory_stats::total() returns an accurate, non-overlapping sum. | ||
| auto* ws = resource::get_workspace_resource(*this); | ||
| auto ws_free = resource::get_workspace_free_bytes(*this); | ||
| auto ws_upstream = ws->get_upstream_resource(); | ||
| auto lws_ref = resource::get_large_workspace_resource_ref(*this); | ||
| auto pinned_ref = resource::get_pinned_memory_resource_ref(*this); | ||
| auto managed_ref = resource::get_managed_memory_resource_ref(*this); | ||
|
|
||
| snapshot_ = resources_; | ||
|
|
||
| // --- Host (global) --- | ||
| { | ||
| host_adaptor_ = std::make_unique<host_stats_adaptor_t>(mr::host_resource_ref{old_host_}); | ||
| host_stats_ = host_adaptor_->get_stats(); | ||
| mr::set_default_host_resource(mr::host_resource_ref{*host_adaptor_}); | ||
| } | ||
|
|
||
| // --- Pinned --- | ||
| { | ||
| mr::statistics_adaptor<mr::host_device_resource_ref> sa{pinned_ref}; | ||
| pinned_stats_ = sa.get_stats(); | ||
| resource::set_pinned_memory_resource(*this, std::move(sa)); | ||
| } | ||
|
|
||
| // --- Managed --- | ||
| { | ||
| mr::statistics_adaptor<mr::host_device_resource_ref> sa{managed_ref}; | ||
| managed_stats_ = sa.get_stats(); | ||
| resource::set_managed_memory_resource(*this, std::move(sa)); | ||
| } | ||
|
|
||
| // --- Device (global) --- | ||
| // Invalidate the cached thrust policy (the resource_ref it captured | ||
| // will be stale once we replace the global device resource). | ||
| factories_.at(resource::resource_type::THRUST_POLICY) = std::make_pair( | ||
| resource::resource_type::LAST_KEY, std::make_shared<resource::empty_resource_factory>()); | ||
| resources_.at(resource::resource_type::THRUST_POLICY) = std::make_pair( | ||
| resource::resource_type::LAST_KEY, std::make_shared<resource::empty_resource>()); | ||
| { | ||
| device_stats_adaptor_t sa{rmm::device_async_resource_ref{old_device_}}; | ||
| device_stats_ = sa.get_stats(); | ||
| device_adaptor_ = std::make_unique<device_stats_adaptor_t>(std::move(sa)); | ||
| rmm::mr::set_current_device_resource(*device_adaptor_); | ||
| } | ||
| // --- Workspace --- | ||
| { | ||
| mr::statistics_adaptor<rmm::device_async_resource_ref> sa{ws_upstream}; | ||
| ws_stats_ = sa.get_stats(); | ||
| resource::set_workspace_resource(*this, std::move(sa), ws_free); | ||
| } | ||
|
|
||
| // --- Large workspace --- | ||
| { | ||
| mr::statistics_adaptor<rmm::device_async_resource_ref> sa{lws_ref}; | ||
| lws_stats_ = sa.get_stats(); | ||
| resource::set_large_workspace_resource(*this, std::move(sa)); | ||
| } | ||
| } | ||
| }; | ||
|
|
||
| } // namespace raft |
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good find. Are there changes you would suggest for RMM or CCCL?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks! I think, CCCL/rrm are fine, because the
cuda::mr::shared_resourcedefines the copy/move constructors explicitly.