#include <Amesos_Meta.h>
Inheritance diagram for Amesos_Klu:
Public Member Functions | |
Constructor methods | |
| Amesos_Klu (const Epetra_LinearProblem &LinearProblem) | |
| Amesos_Klu Constructor. | |
| ~Amesos_Klu (void) | |
| Amesos_Klu Destructor. | |
Mathematical functions. | |
| int | SymbolicFactorization () |
| Performs SymbolicFactorization on the matrix A. | |
| int | NumericFactorization () |
| Performs NumericFactorization on the matrix A. | |
| int | Solve () |
| Solves A X = B (or AT X = B). | |
Additional methods required to support the Epetra_Operator interface. | |
| const Epetra_LinearProblem * | GetProblem () const |
| Get a pointer to the Problem. | |
| bool | MatrixShapeOK () const |
| Returns true if KLU can handle this matrix shape. | |
| int | SetUseTranspose (bool UseTranspose) |
| SetUseTranpose(true) is more efficient in Amesos_Klu. | |
| bool | UseTranspose () const |
| Returns the current UseTranspose setting. | |
| const Epetra_Comm & | Comm () const |
| Returns a pointer to the Epetra_Comm communicator associated with this matrix. | |
| int | SetParameters (Teuchos::ParameterList &ParameterList) |
| Set parameters from the input parameters list, returns 0 if successful. | |
| void | PrintTiming () |
| Prints timing information. | |
| void | PrintStatus () |
| Prints information about the factorization and solution phases. | |
Constructor methods | |
| Amesos_Klu (const Epetra_LinearProblem &LinearProblem) | |
| Amesos_Klu Constructor. | |
| ~Amesos_Klu (void) | |
| Amesos_Klu Destructor. | |
Mathematical functions. | |
| int | SymbolicFactorization () |
| Performs SymbolicFactorization on the matrix A. | |
| int | NumericFactorization () |
| Performs NumericFactorization on the matrix A. | |
| int | Solve () |
| Solves A X = B (or AT X = B). | |
Additional methods required to support the Epetra_Operator interface. | |
| const Epetra_LinearProblem * | GetProblem () const |
| Get a pointer to the Problem. | |
| bool | MatrixShapeOK () const |
| Returns true if KLU can handle this matrix shape. | |
| int | SetUseTranspose (bool UseTranspose) |
| SetUseTranpose(true) is more efficient in Amesos_Klu. | |
| bool | UseTranspose () const |
| Returns the current UseTranspose setting. | |
| const Epetra_Comm & | Comm () const |
| Returns a pointer to the Epetra_Comm communicator associated with this matrix. | |
| int | SetParameters (Teuchos::ParameterList &ParameterList) |
| Updates internal variables. | |
| void | PrintTiming () |
| Print timing information. | |
| void | PrintStatus () |
| Print information about the factorization and solution phases. | |
Protected Attributes | |
| int * | Lp |
| double * | Lx |
| Amesos_Klu_Pimpl * | PrivateKluData_ |
| vector< int > | Ap |
| vector< int > | Ai |
| vector< double > | Aval |
| Epetra_Map * | SerialMap_ |
| Epetra_CrsMatrix * | SerialCrsMatrixA_ |
| Epetra_CrsMatrix * | SerialMatrix_ |
| Epetra_CrsMatrix * | TransposeMatrix_ |
| Epetra_CrsMatrix * | Matrix_ |
| const Epetra_LinearProblem * | Problem_ |
| int | debug_ |
| Epetra_Time * | Time_ |
Class Amesos_Klu is an object-oriented wrapper for KLU. KLU, whose sources are distributed within Amesos, is a serial solver for sparse matrices. KLU will solve a linear system of equations:
, where A is an Epetra_RowMatrix and X and B are Epetra_MultiVector objects.
Amesos_Klu computes
more efficiently than
. The latter requires a matrix transpose -- which costs both time and space.
KLU is Tim Davis' implementation of Gilbert-Peierl's left-looking sparse partial pivoting algorithm, with Eisenstat & Liu's symmetric pruning. Gilbert's version appears as [L,U,P]=lu(A) in MATLAB. It doesn't exploit dense matrix kernels, but it is the only sparse LU factorization algorithm known to be asymptotically optimal, in the sense that it takes time proportional to the number of floating-point operations. It is the precursor to SuperLU, thus the name ("clark Kent LU"). For very sparse matrices that do not suffer much fill-in (such as most circuit matrices when permuted properly) dense matrix kernels do not help, and the asymptotic run-time is of practical importance.
The klu_btf code first permutes the matrix to upper block triangular form (using two algorithms by Duff and Reid, MC13 and MC21, in the ACM Collected Algorithms). It then permutes each block via a symmetric minimum degree ordering (AMD, by Amestoy, Davis, and Duff). This ordering phase can be done just once for a sequence of matrices. Next, it factorizes each reordered block via the klu routine, which also attempts to preserve diagonal pivoting, but allows for partial pivoting if the diagonal is to small.
|
|
Amesos_Klu Constructor. Creates an Amesos_Klu instance, using an Epetra_LinearProblem, passing in an already-defined Epetra_LinearProblem object. Note: The operator in LinearProblem must be an Epetra_RowMatrix. |
|
|
Amesos_Klu Destructor. Completely deletes an Amesos_Klu object. |
|
|
Amesos_Klu Constructor. Creates an Amesos_Klu instance, using an Epetra_LinearProblem, passing in an already-defined Epetra_LinearProblem object. Note: The operator in LinearProblem must be an Epetra_RowMatrix. |
|
|
Amesos_Klu Destructor. Completely deletes an Amesos_Klu object. |
|
|
Returns true if KLU can handle this matrix shape. Returns true if the matrix shape is one that KLU can handle. KLU only works with square matrices. Implements Amesos_BaseSolver. |
|
|
Returns true if KLU can handle this matrix shape. Returns true if the matrix shape is one that KLU can handle. KLU only works with square matrices. Implements Amesos_BaseSolver. |
|
|
Performs NumericFactorization on the matrix A. In addition to performing numeric factorization (and symbolic factorization if necessary) on the matrix A, the call to NumericFactorization() implies that no change will be made to the underlying matrix without a subsequent call to NumericFactorization(). preconditions:
postconditions:
Implements Amesos_BaseSolver. |
|
|
Performs NumericFactorization on the matrix A. In addition to performing numeric factorization (and symbolic factorization if necessary) on the matrix A, the call to NumericFactorization() implies that no change will be made to the underlying matrix without a subsequent call to NumericFactorization(). It is required that GetProblem().GetOperator() != 0.
Implements Amesos_BaseSolver. |
|
|
Updates internal variables. <br >Preconditions:
<br >Postconditions:
Implements Amesos_BaseSolver. |
|
|
SetUseTranpose(true) is more efficient in Amesos_Klu.
Implements Amesos_BaseSolver. |
|
|
SetUseTranpose(true) is more efficient in Amesos_Klu.
If SetUseTranspose() is set to true, Implements Amesos_BaseSolver. |
|
|
Solves A X = B (or AT X = B). preconditions:
postconditions:
Implements Amesos_BaseSolver. |
|
|
Performs SymbolicFactorization on the matrix A. In addition to performing symbolic factorization on the matrix A, the call to SymbolicFactorization() implies that no change will be made to the non-zero structure of the underlying matrix without a subsequent call to SymbolicFactorization(). preconditions:
postconditions:
Implements Amesos_BaseSolver. |
|
|
Performs SymbolicFactorization on the matrix A. In addition to performing symbolic factorization on the matrix A, the call to SymbolicFactorization() implies that no change will be made to the non-zero structure of the underlying matrix without a subsequent call to SymbolicFactorization(). It is required that GetProblem().GetOperator() != 0.
Implements Amesos_BaseSolver. |
1.3.9.1