You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently the problem sizes we can solve are limited to those that can fit in the RAM. This is a limitation that I don't like. In theory, we can use something mmap (like https://docs.julialang.org/en/v1/stdlib/Mmap/#Mmap.mmap) to map an array to a file in the memory. Then we can loop over the array and Julia will load the data in chunks from the file.
The text was updated successfully, but these errors were encountered:
Currently the problem sizes we can solve are limited to those that can fit in the RAM. This is a limitation that I don't like. In theory, we can use something
mmap
(like https://docs.julialang.org/en/v1/stdlib/Mmap/#Mmap.mmap) to map an array to a file in the memory. Then we can loop over the array and Julia will load the data in chunks from the file.The text was updated successfully, but these errors were encountered: