From 5644ac636ef5af31b590c6810ab53ad8d6561851 Mon Sep 17 00:00:00 2001
From: Mathieu Faverge <mathieu.faverge@inria.fr>
Date: Wed, 22 May 2024 17:41:54 +0200
Subject: [PATCH] zlatms: add forgotten hermitian case

---
 compute/pzlatms.c | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/compute/pzlatms.c b/compute/pzlatms.c
index e8daf897e..f974d0417 100644
--- a/compute/pzlatms.c
+++ b/compute/pzlatms.c
@@ -104,6 +104,9 @@ void chameleon_pzlatms( cham_dist_t idist, unsigned long long int seed, cham_sym
     else if ( sym == ChamSymPosv ) {
         trans = ChamTrans;
     }
+    else if ( sym == ChamHermPoev ) {
+        trans = ChamConjTrans;
+    }
 
 #if !defined(CHAMELEON_SIMULATION)
     /* Compute the diagonal D */
-- 
GitLab