| 
| template<typename T >  | 
| void  | axpy (const T &a, const T *xVec, const T *yVec, T *resultVec, SizeType size) | 
|   | Compute ax + y.  More...
  | 
|   | 
| template<typename T >  | 
| void  | axpy (const T &a, const Vector< T > &xVec, const Vector< T > &yVec, Vector< T > &result) | 
|   | Compute ax + y.  More...
  | 
|   | 
| template<typename MatrixOperator , typename VecValueType >  | 
| void  | computeResidual (const MatrixOperator &A, const VecValueType *x, const VecValueType *b, VecValueType *r) | 
|   | Compute r = b − Ax.  More...
  | 
|   | 
| template<typename MatrixOperator , typename T >  | 
| void  | computeResidual (const MatrixOperator &A, const Vector< T > &x, const Vector< T > &b, Vector< T > &r) | 
|   | Compute r = b − Ax.  More...
  | 
|   |