![]() |
NDEVR
API Documentation
|
Internal helper functions for block-wise matrix-vector products (axpy and atxpy). More...
#include <Eigen/Core>Go to the source code of this file.
Namespaces | |
| namespace | NDEVR |
| The primary namespace for the NDEVR SDK. | |
Functions | |
| template<typename MatrixType> | |
| void | internal::axpy (const MatrixType &A, const Eigen::Map< const Eigen::VectorX< g_type > > &x, int xoff, Eigen::Map< Eigen::VectorX< g_type > > &y, int yoff) |
| Computes y[yoff..] += A * x[xoff..] for fixed-size blocks. | |
Internal helper functions for block-wise matrix-vector products (axpy and atxpy).
Definition in file matrix_operations.h.
|
inline |
Computes y[yoff..] += A * x[xoff..] for fixed-size blocks.
| MatrixType | The Eigen matrix type. |
| [in] | A | The matrix block. |
| [in] | x | Source vector map. |
| [in] | xoff | Offset into the source vector. |
| [in,out] | y | Destination vector map. |
| [in] | yoff | Offset into the destination vector. |
Definition at line 45 of file matrix_operations.h.