From 015612d5903888dc73db7ecbb5983438d4627ecd Mon Sep 17 00:00:00 2001 From: ancarola Date: Mon, 1 Jul 2019 15:58:29 +0200 Subject: Small correction on basic multiplication --- include/mm/mmmatrix.hpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'include/mm/mmmatrix.hpp') diff --git a/include/mm/mmmatrix.hpp b/include/mm/mmmatrix.hpp index 5eb0171..0b7a40b 100644 --- a/include/mm/mmmatrix.hpp +++ b/include/mm/mmmatrix.hpp @@ -414,7 +414,9 @@ mm::matrix operator*( assert(a.cols() == b.rows()); mm::matrix result; - mm::matrix bt = b.t(); // weak transposition + const mm::matrix bt = b.t(); // weak transposition + + npdebug("Calling *") for (unsigned row = 0; row < M; row++) for (unsigned col = 0; col < N; col++) -- cgit v1.2.1