We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I am using https://github.com/rfourquet/BitIntegers.jl as follows.
using BitIntegers BitIntegers.@define_integers 40 v = ones(UInt40, 10^6)
Now I do the following:
Base.summarysize(v) 5000040 sizeof(v) 5000000
Both of these are wrong I believe as each 40-bit integer takes 64-bit of memory (i.e. one word).
The correct answer should be 8000000 (plus whatever overheads).
The text was updated successfully, but these errors were encountered:
Fixed by #35900?
Sorry, something went wrong.
Yes, dup of #35884.
No branches or pull requests
I am using https://github.com/rfourquet/BitIntegers.jl as follows.
Now I do the following:
Both of these are wrong I believe as each 40-bit integer takes 64-bit of memory (i.e. one word).
The correct answer should be 8000000 (plus whatever overheads).
The text was updated successfully, but these errors were encountered: