eth-cscs / conflux

Distributed Communication-Optimal LU-factorization Algorithm
BSD 3-Clause "New" or "Revised" License
12 stars 3 forks source link

Handling large matrices #16

Closed kabicm closed 3 years ago

kabicm commented 3 years ago

Previously, full matrices were being allocated on each node, thus limiting the max problem size that can be run. However, our testing still assumes that rank 0 can collect the full matrix and check the correctness. Therefore, we had to avoid allocating full matrices on each node, but still keep the testing validation.

This PR fixes this by doing the following: