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
I'm recently saw this amazing lib for AMG. Tried the examples and they perform very well so I wanted to use the lib for my own FE implementation as solver backend, however up til now I was using Petsc for matrix assembly, and I was wondering if there is a possibility to assemble a distributed matrix also with this code, as all the examples used to read in a MatrixMarket format?
Matrix assembly is outside of the library scope, the library expect the user to provide assembled matrices in CSR format. The MM reader is only provided to facilitate examples and experimenting. Here is an example of direct assembly:
I'm recently saw this amazing lib for AMG. Tried the examples and they perform very well so I wanted to use the lib for my own FE implementation as solver backend, however up til now I was using Petsc for matrix assembly, and I was wondering if there is a possibility to assemble a distributed matrix also with this code, as all the examples used to read in a MatrixMarket format?
To formulate it more precise: Is there an equivalent to https://petsc.org/release/docs/manualpages/Mat/MatSetValues/ from Petsc?
The text was updated successfully, but these errors were encountered: