From 367b57e8944caff4c95054a6a1242408cc324698 Mon Sep 17 00:00:00 2001
From: Mathieu Faverge <mathieu.faverge@inria.fr>
Date: Tue, 28 Jan 2025 09:35:03 +0100
Subject: [PATCH] flops.h: Fix issue in TRSM flops

---
 include/chameleon/flops.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/include/chameleon/flops.h b/include/chameleon/flops.h
index 06511390d..c1a6f952d 100644
--- a/include/chameleon/flops.h
+++ b/include/chameleon/flops.h
@@ -76,7 +76,7 @@
 #define FADDS_TRMM(__side, __m, __n) ( ( (__side) == ChamLeft ) ? FADDS_TRMM_2((__m), (__n)) : FADDS_TRMM_2((__n), (__m)) )
 
 #define FMULS_TRSM FMULS_TRMM
-#define FADDS_TRSM FMULS_TRMM
+#define FADDS_TRSM FADDS_TRMM
 
 /*
  * Lapack
-- 
GitLab