|
Baremetal-NN
Baremetal-NN API documentation
|
| void nn_addmm_i32 | ( | Tensor2D_I32 * | y, |
| const Tensor2D_I32 * | c, | ||
| const Tensor2D_I32 * | x1, | ||
| const Tensor2D_I32 * | x2 | ||
| ) |
Performs matrix multiplication of two 2D tensors and adds the result to a third tensor.
nn_addmm_i32
y[i][j] = x1[i][k] * x2[k][j] + c[i][j]
| y | The result tensor. |
| c | The third tensor. |
| x1 | The first tensor. |
| x2 | The second tensor. |