Mentions légales du service

Skip to content
Snippets Groups Projects
Commit e3d63aa2 authored by Mathieu Faverge's avatar Mathieu Faverge
Browse files

testing: Fix unused variables in batched testings

parent 10c9d9a7
No related branches found
No related tags found
1 merge request!464Fix GenPkgConfig name clash
......@@ -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 );
......
......@@ -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 );
......
......@@ -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;
......
......@@ -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 );
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment