-
Notifications
You must be signed in to change notification settings - Fork 27
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
Reserved values for uint64 #218
Comments
I can reproduce it (for both n5 and zarr file formats) and that's a weird one! Unfortunately I don't have any time looking into this for the foreseeable future. As a first pointer for how to solve it:
|
I meant to spend a bit of time trying to figure this out this weekend, but so far I'm having trouble getting the software to build locally (followed the instructions, it seems to have tripped over some simd related stuff in xtensor headers).
Knowing C++, this could as easily be a compiler version problem or any number of other things. I'll see if I can find another one of my systems where the build has more luck. |
That might be some version conflict in xtensor and xsimd. |
Sadly, same thing. Debugging C++ build errors is not my forte.
|
Can you share the version of |
I will try setting up an env later and see if I can reproduce it. Which OS are you using? |
I'm on Debian 12 on x86_64. |
The dev environment was very outdated. I have updated it and also simplified it because it's not necessary to have the fixed envs for python versions any more. It works on my laptop with these changes (Ubuntu 22.04). See #219. |
It builds now! I'll hopefully be able to spend some time digging on this issue now. Thanks! |
Right now it looks like uint64 support for n5 files has a value limitation compared to other languages (Java, for examples) - it is not possible to store values that get closer than 1024 to UINT64_MAX
(this creates problems when some meaningful magic values in imaging formats are up there and we can't assign them)
The text was updated successfully, but these errors were encountered: