slepc-3.21.0 2024-03-30
Report Typos and Errors

SVDSetImplicitTranspose

Indicates how to handle the transpose of the matrix associated with the singular value problem.

Synopsis

#include "slepcsvd.h" 
PetscErrorCode SVDSetImplicitTranspose(SVD svd,PetscBool impl)
Logically Collective

Input Parameters

svd  - the singular value solver context
impl  - how to handle the transpose (implicitly or not)

Options Database Key

-svd_implicittranspose  - Activate the implicit transpose mode.

Notes

By default, the transpose of the matrix is explicitly built (if the matrix has defined the MatTranspose operation).

If this flag is set to true, the solver does not build the transpose, but handles it implicitly via MatMultTranspose() (or MatMultHermitianTranspose() in the complex case) operations. This is likely to be more inefficient than the default behaviour, both in sequential and in parallel, but requires less storage.

See Also

SVDGetImplicitTranspose(), SVDSolve(), SVDSetOperators()

Level

advanced

Location

src/svd/interface/svdopts.c

Index of all SVD routines
Table of Contents for all manual pages
Index of all manual pages