-
Notifications
You must be signed in to change notification settings - Fork 51
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 np.memmap
#150
Comments
Definitely sounds like a useful feature. Some questions/comments. Sounds like it should only apply when encoding is raw. Should it apply to ASCII/text encodings? Not sure that makes sense. Should the memmap be read-only? It's definitely odd to do I'm leaning towards a separate function like I'm also unclear about Fortan vs C-style ordering, but hopefully the |
@addisonElliott I agree it
|
I am trying to migrate some large datasets to nrrd and indeed pynrrd, and one thing I desire is to have
nrrd.read_data
supportnp.memmap
. All my data is savedraw
without compression, and say I get gigabytes of data in a file, it's much faster for me to do anp.memmap
where I'll then read the segment of data I need, rather than loading everything into memory first.The text was updated successfully, but these errors were encountered: