Latest Tech News

Stay updated with the latest in technology, AI, cybersecurity, and more

Filtered by: 00000000 Clear Filter

SIMD within a register: How I doubled hash table lookup performance

While working on a Cuckoo Filter implementation in C#, I created an array-like structure for the underlying hash table. I chose an 8-bit fingerprint: it aligns nicely on a byte boundary and still keeps the false-positive rate around 3 %. The layout looked straightforward—just a byte array where the start of each bucket is calculated as bucketIdx * bucketSize . The size of each bucket is 4 slots, which is a solid choice for Cuckoo Filter. Bucket 0 3A 00 B7 F2 Bucket 1 4C 91 00 DE Bucket n AA 00

SIMD Within a Register: How I Doubled Hash Table Lookup Performance

While working on a Cuckoo Filter implementation in C#, I created an array-like structure for the underlying hash table. I chose an 8-bit fingerprint: it aligns nicely on a byte boundary and still keeps the false-positive rate around 3 %. The layout looked straightforward—just a byte array where the start of each bucket is calculated as bucketIdx * bucketSize . The size of each bucket is 4 slots, which is a solid choice for Cuckoo Filter. Bucket 0 3A 00 B7 F2 Bucket 1 4C 91 00 DE Bucket n AA 00

Congratulations on creating the one billionth repository on GitHub

We wanted to congratulate you on creating the one billionth repository on GitHub! ➜ curl -s https://api.github.com/repositories/1000000000 { "id": 1000000000, "node_id": "R_kgDOO5rKAA", "name": "shit", "full_name": "AasishPokhrel/shit", We really hope you have the opportunity to build some great 💩 Have a great day! ❤️