A direct solver based on a factorization into lower and upper triangular factors (with an optional diagonal scaling).
More...
|
| std::unique_ptr< LinOp > | transpose () const override |
| | Returns a LinOp representing the transpose of the Transposable object.
|
| std::unique_ptr< LinOp > | conj_transpose () const override |
| | Returns a LinOp representing the conjugate transpose of the Transposable object.
|
|
const parameters_type & | get_parameters () const |
|
| Direct (const Direct &) |
| | Creates a copy of the solver.
|
|
| Direct (Direct &&) |
| | Moves from the given solver, leaving it empty.
|
|
Direct & | operator= (const Direct &) |
|
Direct & | operator= (Direct &&) |
|
const Direct< ValueType, IndexType > * | apply (ptr_param< const LinOp > b, ptr_param< LinOp > x) const |
|
void | convert_to (result_type *result) const override |
|
void | move_to (result_type *result) override |
|
EnableSolverBase & | operator= (const EnableSolverBase &other) |
| | Creates a shallow copy of the provided system matrix, clones it onto this executor if executors don't match.
|
|
int | get_num_workspace_ops () const override |
|
std::vector< std::string > | get_workspace_op_names () const override |
|
std::vector< int > | get_workspace_scalars () const override |
| | Returns the IDs of all scalars (workspace vectors with system dimension-independent size, usually 1 x num_rhs).
|
|
std::vector< int > | get_workspace_vectors () const override |
| | Returns the IDs of all vectors (workspace vectors with system dimension-dependent size, usually system_matrix_size x num_rhs).
|
| std::shared_ptr< const factorization::Factorization< ValueType, IndexType > > | get_system_matrix () const |
| | Returns the system matrix, with its concrete type, used by the solver.
|
template<typename ValueType, typename IndexType>
class gko::experimental::solver::Direct< ValueType, IndexType >
A direct solver based on a factorization into lower and upper triangular factors (with an optional diagonal scaling).
The solver is built from the Factorization returned by the provided LinOpFactory.
- Template Parameters
-
| ValueType | the type used to store values of the system matrix |
| IndexType | the type used to store sparsity pattern indices of the system matrix |