Use constant primes where possible

Avoiding some MOVQs provides a small boost.

name                   old time/op   new time/op   delta
Hashes/xxhash,n=5_B-4   13.6ns ± 2%   13.2ns ± 0%  -2.80%  (p=0.000 n=10+8)

name                   old speed     new speed     delta
Hashes/xxhash,n=5_B-4  368MB/s ± 2%  379MB/s ± 0%  +2.95%  (p=0.000 n=10+9)
2 files changed
tree: c5bad80c239d221a0e7641df6d8b2787cbe5bea4
  1. xxhsum/
  2. LICENSE.txt
  3. README.md
  4. xxhash.go
  5. xxhash_amd64.go
  6. xxhash_amd64.s
  7. xxhash_amd64_test.go
  8. xxhash_other.go
  9. xxhash_test.go
README.md

xxhash

GoDoc

xxhash is a Go implementation of the 64-bit xxHash algorithm, XXH64. This is a high-quality hashing algorithm that is much faster than anything in the Go standard library.

The API is very small, taking its cue from the other hashing packages in the standard library:

$ go doc github.com/cespare/xxhash                                                                                                                                                                                              !
package xxhash // import "github.com/cespare/xxhash"

Package xxhash implements the 64-bit variant of xxHash (XXH64) as described
at http://cyan4973.github.io/xxHash/.

func New() hash.Hash64
func Sum64(b []byte) uint64

This implementation provides a fast pure-Go implementation and an even faster assembly implementation for amd64.

Here are some quick benchmarks comparing the pure-Go and assembly implementations of Sum64 against another popular Go XXH64 implementation, github.com/OneOfOne/xxhash:

input sizeOneOfOnecespare (noasm)cespare
5 B438.34 MB/s362.62 MB/s532.42 MB/s
100 B3676.54 MB/s3473.26 MB/s4193.17 MB/s
4 KB8128.64 MB/s8545.27 MB/s10429.97 MB/s
10 MB7335.19 MB/s7674.61 MB/s9041.74 MB/s