Skip to content

Commit

Permalink
Murmur11 improve speed and rnd
Browse files Browse the repository at this point in the history
+ Added python project for rnd prime generator
+ Switch to Intel Compiler
  • Loading branch information
zhenkas committed Aug 29, 2024
1 parent 544f4f1 commit eed1218
Show file tree
Hide file tree
Showing 20 changed files with 916 additions and 166 deletions.
3 changes: 1 addition & 2 deletions Hashes.h
Original file line number Diff line number Diff line change
Expand Up @@ -305,8 +305,7 @@ inline void MurmurHash1_test ( const void * key, int len, uint32_t seed, void *
inline void
MurmurHash11_test (const void *key, int len, uint32_t seed, void *out)
{
MURMUR11_CTX ctx = seed;
*(uint32_t *)out = MurmurHash11 (key, len, &ctx);
*(uint32_t *)out = MurmurHash11 (key, len, seed);
}

inline void MurmurHash2_test ( const void * key, int len, uint32_t seed, void * out )
Expand Down
Loading

0 comments on commit eed1218

Please sign in to comment.