potocpav / npy-rs

NumPy file format (de-)serialization in Rust
30 stars 7 forks source link

Write large Arrays to File #21

Open mkueh opened 1 year ago

mkueh commented 1 year ago

Hello, I tried to write down a large Array (>10 GB) to a File. But Npy crashes with the following error:

Npy(Io(Custom { kind: Other, error: "Large file option has not been set" }))

It is possible to fix it?

ExpHP commented 1 year ago

This error message appears to come from the zip crate, which is not used by npy. Are you sure there's not more to this issue?