-
Notifications
You must be signed in to change notification settings - Fork 9
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
FACS has problems in MAC OsX #122
Comments
We should add |
I have went through Sizes of bloom filters on mac and x86 respectively:
Contents vary though:
So now I would put my bets on something going on wrong while building the bloom filter on OSX... |
A quick hexdump inspection reveals the problem: On OSX:
On x86:
Therefore, header construction for |
Sorry for the strange decimal output, it might make it hard to compare in hexa. Here's the canonical output from hexdump ( On OSX:
On x86:
Since those bloom filters were generated with the same testsuite, the parameters are the same, so there should be some bug on how OSX compiles/interprets numbers when building the filter... or a bad pointer when it reports the results... |
Bindiffing both bloom files with |
Something must be wrong either with the bloom filter construction or with the query method in Mac OsX, as it is returning
0
andnan
on every query:The text was updated successfully, but these errors were encountered: