|
numerics 0.1.0
|
Implementations for num::kernel::array (seq_t and par_t overloads). More...
Go to the source code of this file.
Namespaces | |
| namespace | num |
| namespace | num::kernel |
| namespace | num::kernel::array |
Functions | |
| void | num::kernel::array::axpby (real a, const Vector &x, real b, Vector &y, seq_t) noexcept |
| Sequential: y[i] = a*x[i] + b*y[i] (single-pass; calls raw::axpby) | |
| void | num::kernel::array::axpby (real a, const Vector &x, real b, Vector &y, par_t) |
| Parallel: y[i] = a*x[i] + b*y[i]. | |
| void | num::kernel::array::axpbyz (real a, const Vector &x, real b, const Vector &y, Vector &z, seq_t) noexcept |
| Sequential: z[i] = a*x[i] + b*y[i]. | |
| void | num::kernel::array::axpbyz (real a, const Vector &x, real b, const Vector &y, Vector &z, par_t) |
| Parallel: z[i] = a*x[i] + b*y[i]. | |
Implementations for num::kernel::array (seq_t and par_t overloads).
Definition in file array.cpp.