-
Notifications
You must be signed in to change notification settings - Fork 32
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
Support for more than 2^32 elements? #2
Comments
Hello @JustinChu I never needed more than
You should be just fine replacing That being said, at this point I'm undecided on whether it's a change I want to merge. |
My code only needs to work in a Linux environment using Thanks. |
So far it seems to be okay. I basically changed a bunch of Unrelated question (maybe I should add this to another issue). How thread safe is the code? I assume I won't be able to atomically insert values but are at least lookups safe? Ideally, I would like to be able to do atomic inserts with compare_and_swap (e.g. with atomic built-ins like |
did you ever get to modifying the SIMD code? |
I found that replacing all |
It seems there is a limit to use a
uint32_t
for the count parameter of thePackedArray_create()
function. Do you foresee any major issues modifying the code downstream to allow for auint64_t
count so I can populate it with more than 2^32 elements?The text was updated successfully, but these errors were encountered: