From 65349b07a76392d3091eb5e28eb70fc0bb122929 Mon Sep 17 00:00:00 2001 From: Antonin Portelli Date: Thu, 8 Nov 2018 18:44:44 +0000 Subject: [PATCH] Hadrons: simpler A2A perf functions --- Hadrons/A2AMatrix.hpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Hadrons/A2AMatrix.hpp b/Hadrons/A2AMatrix.hpp index 2f958685..831d2a02 100644 --- a/Hadrons/A2AMatrix.hpp +++ b/Hadrons/A2AMatrix.hpp @@ -196,8 +196,8 @@ public: } } - template - static inline double accTrMulFlops(C &acc, const MatLeft &a, const MatRight &b) + template + static inline double accTrMulFlops(const MatLeft &a, const MatRight &b) { double n = a.rows()*a.cols(); @@ -263,7 +263,7 @@ public: } #endif template - static inline double mulFlops(Mat &res, const Mat &a, const Mat &b) + static inline double mulFlops(const Mat &a, const Mat &b) { double nr = a.rows(), nc = a.cols();