this post was submitted on 11 Feb 2025
293 points (95.6% liked)
Technology
62073 readers
6597 users here now
This is a most excellent place for technology news and articles.
Our Rules
- Follow the lemmy.world rules.
- Only tech related content.
- Be excellent to each other!
- Mod approved content bots can post up to 10 articles per day.
- Threads asking for personal tech support may be deleted.
- Politics threads may be removed.
- No memes allowed as posts, OK to post as comments.
- Only approved bots from the list below, to ask if your bot can be added please contact us.
- Check for duplicates before posting, duplicates may be removed
- Accounts 7 days and younger will have their posts automatically removed.
Approved Bots
founded 2 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
Here's a link to the paper "Tiny Pointers" https://arxiv.org/pdf/2111.12800 those editors at Quantamagazine writes their summary in a strange fashion, for instance using x in stead of n which is normally used in computer science when talking about big O notation.
In the article, x is not the size of the hash table, it is the inverse of the table’s filling fraction. A 1000-element table that is 90% full has x=10, N=1000.
Since they’re not discussing scaling of data sizes, would be confusing to use O(N) notation or people would make that assumption.
This is the paper the article is about: https://arxiv.org/pdf/2501.02305
You are correct it's an confusing article Quantamagazine have written, why do they start highlighting "Tiny Pointers" https://arxiv.org/pdf/2111.12800 when "Optimal Bounds for Open Addressing Without Reordering" https://arxiv.org/pdf/2501.02305 is the main paper, and it disproves part of Tiny Pointers.