-
Notifications
You must be signed in to change notification settings - Fork 224
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
feat: remove memory allocation for max_size_vec #6903
feat: remove memory allocation for max_size_vec #6903
Conversation
Remove dmemry allocation for MaxSizeVec
WalkthroughThe changes modify how the internal vector is initialized in the Changes
Sequence Diagram(s)sequenceDiagram
participant U as User
participant M as MaxSizeVec
participant V as Vec
U->>M: Call new() or from_iter()
Note right of M: Use Vec::new() for initialization
M->>V: Create a dynamic vector
V-->>M: Return empty Vec<T>
M-->>U: Return new instance of MaxSizeVec
Poem
✨ Finishing Touches
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. 🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
CodeRabbit Configuration File (
|
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.
Actionable comments posted: 0
🧹 Nitpick comments (1)
infrastructure/max_size/src/vec.rs (1)
47-53
: Update the documentation comment to match the implementationThe documentation comment on line 47 states "Creates a new
MaxSizeVec
with a capacity ofMAX_SIZE
", but the implementation now usesVec::new()
which starts with a capacity of 0. This change correctly optimizes memory usage by avoiding unnecessary pre-allocation, but the documentation should be updated to reflect this new behavior.- /// Creates a new `MaxSizeVec` with a capacity of `MAX_SIZE`. + /// Creates a new empty `MaxSizeVec` that can grow up to `MAX_SIZE` elements. pub fn new() -> Self {
📜 Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro
📒 Files selected for processing (1)
infrastructure/max_size/src/vec.rs
(2 hunks)
⏰ Context from checks skipped due to timeout of 90000ms (7)
- GitHub Check: cargo check with stable
- GitHub Check: Cucumber tests / FFI
- GitHub Check: Cucumber tests / Base Layer
- GitHub Check: test (testnet, esmeralda)
- GitHub Check: test (nextnet, nextnet)
- GitHub Check: test (mainnet, stagenet)
- GitHub Check: ci
🔇 Additional comments (1)
infrastructure/max_size/src/vec.rs (1)
179-194
: LGTM - Consistent memory optimization infrom_iter
The change to use
Vec::new()
instead of pre-allocating with capacity is consistent with the optimization in thenew()
method. This will reduce memory usage when processing collections where most instances contain fewer elements than MAX_SIZE, which aligns with the PR objectives to address memory consumption issues.
Test Results (CI) 3 files 129 suites 46m 26s ⏱️ Results for commit 46db12a. |
* development: chore: new release v1.13.3-pre.0 (tari-project#6919) fix: fix migration 5 (tari-project#6915) chore: update change logs (tari-project#6913) chore: new release v1.13.2-pre.0 (tari-project#6912) fix: randomX seed management (tari-project#6910) fix(comms/yamux): dont poll the substream after closing/error (tari-project#6911) fix: dont poll yamux substream after an error (tari-project#6909) feat: remove memory allocation for max_size_vec (tari-project#6903) feat: add display info to yamux (tari-project#6904)
Description
Removed memory allocation for MaxSizeVec
Motivation and Context
Inefficient memory use when loading many blocks - see below memory usage of empty covenants
tari_core::covenants::covenant::Covenant::from_bytes
tari_script::script::TariScript::from_bytes
How Has This Been Tested?
Not tested
What process can a PR reviewer use to test or verify this change?
Code review
Breaking Changes
Summary by CodeRabbit