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

◆ nn_mm_i32()

void nn_mm_i32 ( Tensor2D_I32 y,
const Tensor2D_I32 x1,
const Tensor2D_I32 x2 
)

Performs matrix multiplication of two 2D tensors and stores the result in y.

nn_mm_i32

y[i][j] = x1[i][k] * x2[k][j]

Parameters
yThe result tensor.
x1The first tensor.
x2The second tensor.