LAMA
|
Structure with type definitions for solver routines. More...
#include <LAMAInterface.hpp>
Public Types | |
typedef void(* | jacobi )(ValueType *const solution, const IndexType numRows, const IndexType jdsPerm[], const IndexType jdsIlg[], const IndexType jdsNumDiagonals, const IndexType jdsDlg[], const IndexType jdsJA[], const ValueType jdsValues[], const ValueType oldSolution[], const ValueType rhs[], const ValueType omega, class SyncToken *syncToken) |
Method to compute one iteration step in Jacobi method. | |
typedef void(* | jacobiHalo )(ValueType solution[], const IndexType numRows, const ValueType invDiagonal[], const IndexType numDiagonals, const IndexType jdsHaloPerm[], const IndexType jdsHaloIlg[], const IndexType jdsHaloDlg[], const IndexType jdsHaloJA[], const ValueType jdsHaloValues[], const ValueType oldSolution[], const ValueType omega, class SyncToken *syncToken) |
Method to compute one iteration step in Jacobi method with halo. |
Structure with type definitions for solver routines.
typedef void( * lama::JDSUtilsInterface::Solver< ValueType >::jacobi)(ValueType *const solution, const IndexType numRows, const IndexType jdsPerm[], const IndexType jdsIlg[], const IndexType jdsNumDiagonals, const IndexType jdsDlg[], const IndexType jdsJA[], const ValueType jdsValues[], const ValueType oldSolution[], const ValueType rhs[], const ValueType omega, class SyncToken *syncToken) |
Method to compute one iteration step in Jacobi method.
solution = omega * ( rhs + B * oldSolution) * dinv + ( 1 - omega ) * oldSolution
typedef void( * lama::JDSUtilsInterface::Solver< ValueType >::jacobiHalo)(ValueType solution[], const IndexType numRows, const ValueType invDiagonal[], const IndexType numDiagonals, const IndexType jdsHaloPerm[], const IndexType jdsHaloIlg[], const IndexType jdsHaloDlg[], const IndexType jdsHaloJA[], const ValueType jdsHaloValues[], const ValueType oldSolution[], const ValueType omega, class SyncToken *syncToken) |
Method to compute one iteration step in Jacobi method with halo.