From 92dc4378c4ae9a71d678548393efdd5e136b9a74 Mon Sep 17 00:00:00 2001 From: Mathieu Faverge <mathieu.faverge@inria.fr> Date: Wed, 22 May 2024 17:40:35 +0200 Subject: [PATCH] zlansy: coding style --- compute/pzlansy.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/compute/pzlansy.c b/compute/pzlansy.c index 20b36bd80..fb4b0f4e9 100644 --- a/compute/pzlansy.c +++ b/compute/pzlansy.c @@ -239,21 +239,21 @@ chameleon_pzlansy_frb( cham_trans_t trans, cham_uplo_t uplo, if ( trans == ChamConjTrans) { INSERT_TASK_zhessq( options, ChamEltwise, uplo, tempmm, - A(m, n), W( Welt, m, n) ); + A(m, n), W( Welt, m, n ) ); } else { INSERT_TASK_zsyssq( options, ChamEltwise, uplo, tempmm, - A(m, n), W( Welt, m, n) ); + A(m, n), W( Welt, m, n ) ); } } else { INSERT_TASK_zgessq( options, ChamEltwise, tempmm, tempnn, - A(m, n), W( Welt, m, n) ); + A(m, n), W( Welt, m, n ) ); INSERT_TASK_zgessq( options, ChamEltwise, tempmm, tempnn, - A(m, n), W( Welt, n, m) ); + A(m, n), W( Welt, n, m ) ); } } } -- GitLab