Hacker News with Generative AI: Hash Functions

ChibiHash: Small, Fast 64 bit hash function (nrk.neocities.org)
If you need a small and fast 64 bit hash function that can be copy-pasted easily, then here's one that I cooked up in an hour or so: chibihash64.h.
ChibiHash: Small, Fast 64 bit hash function (nrk.neocities.org)
If you need a small and fast 64 bit hash function that can be copy-pasted easily, then here's one that I cooked up in an hour or so: chibihash64.h.
Breaking CityHash64, MurmurHash2/3, wyhash, and more (orlp.net)
Hash functions are incredibly neat mathematical objects. They can map arbitrary data to a small fixed-size output domain such that the mapping is deterministic, yet appears to be random.
Questioning the Criteria for Evaluating Non-Cryptographic Hash Functions (queue.acm.org)
Computing practitioners encounter hash functions almost every day, although they may not necessarily be the center of attention.
Th64: Tiny Hash Function in C (github.com/tidwall)