From e3d63aa2e5e0c68e0882b4c559eb4016a413d4ae Mon Sep 17 00:00:00 2001
From: Mathieu Faverge <mathieu.faverge@inria.fr>
Date: Thu, 18 Jul 2024 14:35:25 +0200
Subject: [PATCH] testing: Fix unused variables in batched testings

---
 testing/testing_zgemm_batch.c  | 1 -
 testing/testing_zherk_batch.c  | 1 -
 testing/testing_zpotrf_batch.c | 2 --
 testing/testing_ztrsm_batch.c  | 5 ++---
 4 files changed, 2 insertions(+), 7 deletions(-)

diff --git a/testing/testing_zgemm_batch.c b/testing/testing_zgemm_batch.c
index c3a61d034..fbc65a546 100644
--- a/testing/testing_zgemm_batch.c
+++ b/testing/testing_zgemm_batch.c
@@ -40,7 +40,6 @@ testing_zgemm_batch_desc( run_arg_list_t *args, int check )
     int                   async  = parameters_getvalue_int( "async" );
     int                   nb     = run_arg_get_int( args, "nb", 10 );
     int                   ib     = run_arg_get_int( args, "ib", 10 );
-    int                   P      = parameters_getvalue_int( "P" );
     cham_trans_t          transA = run_arg_get_trans( args, "transA", ChamNoTrans );
     cham_trans_t          transB = run_arg_get_trans( args, "transB", ChamNoTrans );
     int                   N      = run_arg_get_int( args, "N", 320 );
diff --git a/testing/testing_zherk_batch.c b/testing/testing_zherk_batch.c
index 4f149ea70..076812827 100644
--- a/testing/testing_zherk_batch.c
+++ b/testing/testing_zherk_batch.c
@@ -40,7 +40,6 @@ testing_zherk_batch_desc( run_arg_list_t *args, int check )
     int           async = parameters_getvalue_int( "async" );
     int           nb    = run_arg_get_int( args, "nb", 10 );
     int           ib    = run_arg_get_int( args, "ib", 10 );
-    int           P     = parameters_getvalue_int( "P" );
     cham_trans_t  trans = run_arg_get_trans( args, "trans", ChamNoTrans );
     cham_uplo_t   uplo  = run_arg_get_uplo( args, "uplo", ChamUpper );
     int           N     = run_arg_get_int( args, "N", 320 );
diff --git a/testing/testing_zpotrf_batch.c b/testing/testing_zpotrf_batch.c
index 27d17b301..29ef3b2f8 100644
--- a/testing/testing_zpotrf_batch.c
+++ b/testing/testing_zpotrf_batch.c
@@ -40,11 +40,9 @@ testing_zpotrf_batch_desc( run_arg_list_t *args, int check )
     int           async = parameters_getvalue_int( "async" );
     int           nb    = run_arg_get_int( args, "nb", 10 );
     int           ib    = run_arg_get_int( args, "ib", 10 );
-    int           P     = parameters_getvalue_int( "P" );
     cham_uplo_t   uplo  = run_arg_get_uplo( args, "uplo", ChamUpper );
     int           N     = run_arg_get_int( args, "N", 320 );
     int           seedA = run_arg_get_int( args, "seedA", testing_ialea() );
-    int           Q     = parameters_compute_q( P );
 
     /* Descriptors */
     CHAM_desc_t *descA;
diff --git a/testing/testing_ztrsm_batch.c b/testing/testing_ztrsm_batch.c
index 318aa33bd..2c4960653 100644
--- a/testing/testing_ztrsm_batch.c
+++ b/testing/testing_ztrsm_batch.c
@@ -40,7 +40,6 @@ testing_ztrsm_batch_desc( run_arg_list_t *args, int check )
     int                   async = parameters_getvalue_int( "async" );
     int                   nb    = run_arg_get_int( args, "nb", 10 );
     int                   ib    = run_arg_get_int( args, "ib", 10 );
-    int                   P     = parameters_getvalue_int( "P" );
     cham_trans_t          trans = run_arg_get_trans( args, "trans", ChamNoTrans );
     cham_side_t           side  = run_arg_get_side( args, "side", ChamLeft );
     cham_uplo_t           uplo  = run_arg_get_uplo( args, "uplo", ChamUpper );
@@ -52,8 +51,8 @@ testing_ztrsm_batch_desc( run_arg_list_t *args, int check )
     int                   seedB = run_arg_get_int( args, "seedB", testing_ialea() );
 
     /* Descriptors */
-    int          Am, An, Bm, Bn;
-    CHAM_desc_t *descA, *descB, *descC;
+    int          Am, An;
+    CHAM_desc_t *descA, *descB;
 
     alpha = run_arg_get_complex64( args, "alpha", alpha );
 
-- 
GitLab