Baremetal-NN
Baremetal-NN API documentation
|
void nn_add1d_f32 | ( | Tensor1D_F32 * | y, |
const Tensor1D_F32 * | x1, | ||
const Tensor1D_F32 * | x2 | ||
) |
nn_add1d_f32
Adds x1 and x2 element-wise and stores the result in y.
y[i] = x1[i] + x2[i]
y | The result tensor. |
x1 | The first tensor. |
x2 | The second tensor. |