huangya90 / smhasher

Automatically exported from code.google.com/p/smhasher
0 stars 0 forks source link

Is there a MurmurHash3_x64_64? #11

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
Hi,

The benchmarks: http://code.google.com/p/smhasher/wiki/MurmurHash3 show a 
MurmurHash2_x64_64 which is fast but not recommended. But i wonder, is there a 
MurmurHash3_x64_64? I'm guessing such a function would be about the same as 
MurmurHash3_x64_128 only faster since it just needs 1 64 bit int.

Kind regards,
Mark

Original issue reported on code.google.com by mark...@gmail.com on 16 Feb 2012 at 3:12

GoogleCodeExporter commented 9 years ago
In practice it's faster to use MurmurHash3_x64_128 and only use 64 bits of the 
result.

Original comment by tanj...@gmail.com on 11 May 2012 at 5:56