|
Baremetal-NN
Baremetal-NN API documentation
|
| void nn_mv_f32 | ( | Tensor1D_F32 * | y, |
| const Tensor2D_F32 * | x1, | ||
| const Tensor1D_F32 * | x2 | ||
| ) |
Performs a matrix-vector multiplication of the matrix x1 and the vector x2.
nn_mv_f32
y[i] = x1[i][j] * x2[j]
| y | The result tensor. |
| x1 | The matrix. |
| x2 | The vector. |