Baremetal-NN
Baremetal-NN API documentation
Loading...
Searching...
No Matches

◆ nn_mv_f32()

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]

Parameters
yThe result tensor.
x1The matrix.
x2The vector.