rules: forbid raw index vectors as persistent cache keys - #12
Merged
Conversation
Raw Vec<usize> / Vector{Int} keys pay an O(length) hash and equality walk
per lookup, clone on insert, and retain O(length) memory per entry. Require
mixed-radix flat integer encodings (width selected from the index-space
size) or stable interned IDs instead. Motivated by tensor4all-rs #626/#627,
where TTCache's persistent maps still key by Vec<usize>.
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Summary
Adds a performance rule, in the common checklist plus Rust and Julia specializations, forbidding raw index vectors (
Vec<usize>,Vector{Int}) as keys of persistent or hot-path caches.Rationale: every lookup pays an O(length) hash and equality walk, every insert clones the vector, and retained keys can rival the cached payload in memory. The required alternative is a mixed-radix flat integer key with the width selected from the index-space size (u64, u128, then extended integers, as in tensor4all-simplett's
FlatIndexer), or stable interned IDs when the key space is unbounded.Motivated by tensor4all/tensor4all-rs#626 and tensor4all/tensor4all-rs#627, where
TTCache's persistent maps still key byVec<usize>.🤖 Generated with Claude Code