I'm working with a bunch of numpy
arrays that don't all fit in RAM, so I need to periodically save them to and load them from the disk.
Usually, I know which ones I'll need to read ahead of time, so I'd like to hide the latency by issuing something like a "prefetch" instruction in advance.
How should I do this?
(There is a similar question related to TensorFlow: However, I am not using TensorFlow, and so I wouldn't want to create a dependency on it)