runtime: memhash: use simple loop for short strings #67619
Labels
compiler/runtime
Issues related to the Go compiler and/or runtime.
NeedsInvestigation
Someone must examine and confirm this is a valid issue and not a duplicate of an existing one.
Performance
Milestone
I noticed in the course of developing starlark-go that maphash.String, which wraps
runtime.memhash
and thusruntime.aeshashbody
, is slower than a trivial loop-based hash such as FNV for short strings (len <= 12). You might want to see whether there are gains to be made by changingruntime.memhash
.In the M1 benchmark below, "hard" is the AES 128-bit hash, soft is the FNV byte-at-a-time hash.
The text was updated successfully, but these errors were encountered: