Go to the source code of this file.
|
void | matmul (double b[], const double A[], const unsigned int M, const unsigned int N, const double x[]) |
|
void | matmul_blas (double b[], const double A[], const unsigned int M, const unsigned int N, const double x[]) |
|
void matmul |
( |
double |
b[], |
|
|
const double |
A[], |
|
|
const unsigned int |
M, |
|
|
const unsigned int |
N, |
|
|
const double |
x[] |
|
) |
| |
Performs dense matrix-vector product b := A*x
- Parameters
-
b | resulting vector of dimension N |
A | NxM matrix |
M | #rows |
N | #columns |
x | vector to multiply with |
void matmul_blas |
( |
double |
b[], |
|
|
const double |
A[], |
|
|
const unsigned int |
M, |
|
|
const unsigned int |
N, |
|
|
const double |
x[] |
|
) |
| |