I need to perform some operations with matrices on my computer. These matrices are large 1,000,000x1,000,000 or more, some operations require TB memory. Obviously, they cannot be directly loaded into memory and calculated. What approaches can I use to solve these matrices on my computer? Assuming that the matrices cannot be further reduced using matrix optimizations and are already stored in compact form. I am thinking of using some kind of memory mapping scheme, but I need some ideas.
source share