Jul-19-2023, 09:19 AM
(This post was last modified: Jul-19-2023, 09:20 AM by AlexanderWulf.)
Okay, I have studied the Python implementation of FNV-1a (64-Bit) hash, which uses the unit64_t (64-bit unsigned integer) type in the "C" version:
https://de.wikipedia.org/wiki/FNV_(Infor...%C3%BCssel
https://en.wikipedia.org/wiki/Fowler%E2%...NV-1a_hash
Note the requirements:
In Python's implementation, they effectively do:
So, this is probably more efficient than "modulus" operation and I think I can adopt this technique for my needs.
Nonetheless, numpy looks interesting and I will definitely give it a try! However, in my test, multiplying two np.uint64 values produced an overflow warning
https://de.wikipedia.org/wiki/FNV_(Infor...%C3%BCssel
https://en.wikipedia.org/wiki/Fowler%E2%...NV-1a_hash
Note the requirements:
Quote:All variables, except for byte_of_data, are 64-bit unsigned integers.
The multiply returns the lower 64-bits of the product.
In Python's implementation, they effectively do:
for char in text: n = (n ^ ord(char)) * prime n = n & mask...with mask defined as 0xffffffffffff. I think the bit-wise AND with mask is done in order to get the "lower 64-bits of the product", as needed.
So, this is probably more efficient than "modulus" operation and I think I can adopt this technique for my needs.
Nonetheless, numpy looks interesting and I will definitely give it a try! However, in my test, multiplying two np.uint64 values produced an overflow warning
