47 #ifndef _PEXSI_SPARSE_MATRIX_HPP_
48 #define _PEXSI_SPARSE_MATRIX_HPP_
136 #endif // _PEXSI_SPARSE_MATRIX_HPP_
IntNumVec colptrLocal
Dimension numColLocal + 1, storing the pointers to the nonzero row indices and nonzero values in rowp...
Definition: sparse_matrix.hpp:108
Int nnzLocal
Local number of local nonzeros elements on this processor.
Definition: sparse_matrix.hpp:96
NumVec< F > nzvalLocal
Dimension nnzLocal, storing the nonzero values.
Definition: sparse_matrix.hpp:116
SparseMatrix describes a sequential sparse matrix saved in compressed sparse column format...
Definition: sparse_matrix.hpp:66
IntNumVec rowindLocal
Dimension nnzLocal, storing the nonzero row indices. The indices are 1-based (FORTRAN-convention), i.e. the first row index is 1.
Definition: sparse_matrix.hpp:113
Int size
Matrix dimension.
Definition: sparse_matrix.hpp:93
LongInt Nnz()
Compute the total number of nonzeros through MPI_Allreduce.
Definition: sparse_matrix_impl.hpp:60
MPI_Comm comm
MPI communicator.
Definition: sparse_matrix.hpp:119
Implementation of sparse matrices.
Int nnz
Total number of nonzeros elements.
Definition: sparse_matrix.hpp:101
DistSparseMatrix describes a Sparse matrix in the compressed sparse column format (CSC) and distribut...
Definition: sparse_matrix.hpp:91