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
Is there a version of ComputeCtAB in which A is a serial matrix, perhaps just a mfem matrix? I'm asking this because, if such a routine were available, I would be able to write my code in serial, reducing complexity.
The text was updated successfully, but these errors were encountered:
We do not have such a version, but it is easy to construct a HypreParMatrix. Since libROM builds with a parallel build of MFEM, "serial" means 1 MPI rank. So even in the serial case you can use a HypreParMatrix. In MFEM, the simpler, serial class for a sparse matrix is SparseMatrix. If you prefer to compute a SparseMatrix on 1 MPI rank, then you can use that SparseMatrix to construct a HypreParMatrix, with row/col starts being 0:
Is there a version of ComputeCtAB in which A is a serial matrix, perhaps just a mfem matrix? I'm asking this because, if such a routine were available, I would be able to write my code in serial, reducing complexity.
The text was updated successfully, but these errors were encountered: