The source project of this merge request has been removed.
Matmul rework
Compare changes
- Houssem ROUIS authored
@@ -15,7 +15,6 @@
@@ -15,7 +15,6 @@
@@ -23,55 +22,43 @@ namespace Aidge {
@@ -23,55 +22,43 @@ namespace Aidge {
void MatMulImpl_cpu_forward_kernel(const std::vector<DimSize_t>& input1Dims,const std::vector<DimSize_t>& input2Dims,
output[i * matSize + m * cols2 + n] += input1[(i%nbMat1) * mat1Size + m *innerMulAxis + k] * input2[(i%nbMat2)*mat2Size + k * cols2 + n];