Mentions légales du service

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

Silent warnings

parent b2ca8009
No related branches found
No related tags found
No related merge requests found
......@@ -34,7 +34,7 @@ void chameleon_pzplrnk( int K, CHAM_desc_t *C,
RUNTIME_option_t options;
int m, n, k, KT;
int tempmm, tempnn, tempkk;
int lookahead, myp, myq;
int myp, myq;
CHAMELEON_Complex64_t zbeta;
CHAM_desc_t WA, WB;
......
......@@ -30,10 +30,10 @@ void CORE_zplssq_quark(Quark *quark)
CHAM_tile_t *tileIN;
CHAM_tile_t *tileOUT;
quark_unpack_args_5( quark, storev, M, N, tileIN, tileOUT );
assert( tileIN->format & CHAMELEON_TILE_FULLRANK );
assert( tileOUT->format & CHAMELEON_TILE_FULLRANK );
quark_unpack_args_5( quark, storev, M, N, tileIN, tileOUT );
CORE_zplssq( storev, M, N, tileIN->mat, tileOUT->mat );
}
......@@ -59,9 +59,9 @@ void CORE_zplssq2_quark(Quark *quark)
int N;
CHAM_tile_t *tileRESULT;
assert( tileRESULT->format & CHAMELEON_TILE_FULLRANK );
quark_unpack_args_2( quark, N, tileRESULT );
assert( tileRESULT->format & CHAMELEON_TILE_FULLRANK );
CORE_zplssq2(N, tileRESULT->mat);
}
......
......@@ -24,7 +24,7 @@
#include <quark.h>
#if defined(CHAMELEON_RUNTIME_SYNC)
#define QUARk_Insert_Task QUARK_Execute_Task
#define QUARK_Insert_Task QUARK_Execute_Task
#endif
#include "coreblas.h"
#include "core_blas_dag.h"
......
......@@ -121,6 +121,7 @@ void INSERT_TASK_zplssq2( const RUNTIME_option_t *options, int N,
STARPU_RW, RTBLKADDR(RESULT, double, RESULTm, RESULTn),
STARPU_PRIORITY, options->priority,
STARPU_CALLBACK, callback,
STARPU_EXECUTE_ON_WORKER, workerid,
#if defined(CHAMELEON_CODELETS_HAVE_NAME)
STARPU_NAME, "zplssq2",
#endif
......
......@@ -26,20 +26,18 @@ testing_zplrnk( run_arg_list_t *args, int check )
{
static int run_id = 0;
int hres = 0;
double norm;
CHAM_desc_t *descC;
/* Reads arguments */
int nb = run_arg_get_int( args, "nb", 320 );
int P = parameters_getvalue_int( "P" );
cham_normtype_t norm_type = run_arg_get_ntype( args, "norm", ChamMaxNorm );
int N = run_arg_get_int( args, "N", 1000 );
int M = run_arg_get_int( args, "M", N );
int K = run_arg_get_int( args, "K", N );
int LDC = run_arg_get_int( args, "LDC", M );
int seedA = run_arg_get_int( args, "seedA", random() );
int seedB = run_arg_get_int( args, "seedB", random() );
int Q = parameters_compute_q( P );
int nb = run_arg_get_int( args, "nb", 320 );
int P = parameters_getvalue_int( "P" );
int N = run_arg_get_int( args, "N", 1000 );
int M = run_arg_get_int( args, "M", N );
int K = run_arg_get_int( args, "K", N );
int LDC = run_arg_get_int( args, "LDC", M );
int seedA = run_arg_get_int( args, "seedA", random() );
int seedB = run_arg_get_int( args, "seedB", random() );
int Q = parameters_compute_q( P );
cham_fixdbl_t t, gflops;
/* We consider the gemm cost used in this operation as the cost */
cham_fixdbl_t flops = flops_zgemm( M, N, K );
......
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