From f165d46d4e78a0f1d98575fac08c501b1b883fe4 Mon Sep 17 00:00:00 2001 From: Mathieu Faverge <mathieu.faverge@inria.fr> Date: Fri, 21 Mar 2025 13:59:56 +0100 Subject: [PATCH] posv: Fix comments --- testing/testing_zposv.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/testing/testing_zposv.c b/testing/testing_zposv.c index c2a739a9d..21237c75a 100644 --- a/testing/testing_zposv.c +++ b/testing/testing_zposv.c @@ -14,7 +14,7 @@ * @author Florent Pruvost * @author Mathieu Faverge * @author Alycia Lisito - * @date 2025-01-29 + * @date 2025-03-21 * @precisions normal z -> c d s * */ @@ -80,7 +80,7 @@ testing_zposv_desc( run_arg_list_t *args, int check ) test_data.hres = hres; testing_stop( &test_data, flops_zposv( N, NRHS ) ); - /* Checks the factorisation and residue */ + /* Checks the factorisation and the residual */ if ( check ) { CHAM_desc_t *descA0, *descB; @@ -167,7 +167,7 @@ testing_zposv_std( run_arg_list_t *args, int check ) test_data.hres = hres; testing_stop( &test_data, flops_zposv( N, NRHS ) ); - /* Checks the factorisation and residue */ + /* Checks the factorisation and residual */ if ( check ) { CHAMELEON_Complex64_t *A0 = malloc( sizeof(CHAMELEON_Complex64_t) * LDA*N ); CHAMELEON_Complex64_t *B = malloc( sizeof(CHAMELEON_Complex64_t) * LDB*NRHS ); -- GitLab