|
numerics
|
Functions | |
| void | scale (Vector &v, real alpha) |
| void | axpy (real alpha, const Vector &x, Vector &y) |
| real | dot (const Vector &x, const Vector &y) |
| void | matmul (const Matrix &A, const Matrix &B, Matrix &C) |
| void | matvec (const Matrix &A, const Vector &x, Vector &y) |
| void | matadd (real alpha, const Matrix &A, real beta, const Matrix &B, Matrix &C) |
Definition at line 19 of file vector.cpp.
References num::backends::seq::axpy(), num::ipow(), and num::BasicVector< T >::size().
Referenced by num::axpy().
Definition at line 29 of file vector.cpp.
References num::backends::seq::dot(), num::ipow(), and num::BasicVector< T >::size().
Referenced by num::dot().
| void num::backends::omp::matadd | ( | real | alpha, |
| const Matrix & | A, | ||
| real | beta, | ||
| const Matrix & | B, | ||
| Matrix & | C | ||
| ) |
Definition at line 56 of file matrix.cpp.
References num::beta(), num::ipow(), and num::backends::seq::matadd().
Referenced by num::matadd().
Definition at line 14 of file matrix.cpp.
References num::ipow(), and num::backends::seq::matmul().
Referenced by num::matmul().
Definition at line 42 of file matrix.cpp.
References num::ipow(), and num::backends::seq::matvec().
Referenced by num::matvec().
Definition at line 9 of file vector.cpp.
References num::ipow(), num::backends::seq::scale(), and num::BasicVector< T >::size().
Referenced by num::scale().