From 46601b302072d8b57562dd064e922ffbb29a793c Mon Sep 17 00:00:00 2001 From: Nicolas Date: Sun, 16 Nov 2025 20:44:49 +0100 Subject: [PATCH] Test --- matrix.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/matrix.c b/matrix.c index 3e7a79e..9d52d39 100644 --- a/matrix.c +++ b/matrix.c @@ -46,7 +46,7 @@ MatrixType getMatrixAt(const Matrix matrix, unsigned int rowIdx, unsigned int co return matrix.buffer[rowIdx * matrix.cols + colIdx]; } -// Addition (with broadcasting support for bias) +// Addition Matrix add(const Matrix matrix1, const Matrix matrix2) { Matrix result;