From 7384d533e43ec0cdc97546cb48c15a819adf1567 Mon Sep 17 00:00:00 2001 From: Mathieu Faverge <mathieu.faverge@inria.fr> Date: Wed, 28 Sep 2022 22:18:52 +0200 Subject: [PATCH] tasks: Fix prototype of mixed precision conversion tasks --- include/chameleon/tasks_zc.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/include/chameleon/tasks_zc.h b/include/chameleon/tasks_zc.h index 6e2b83469..ce6b5ad44 100644 --- a/include/chameleon/tasks_zc.h +++ b/include/chameleon/tasks_zc.h @@ -31,12 +31,12 @@ * Declarations of QUARK wrappers (called by CHAMELEON) - alphabetical order */ void INSERT_TASK_clag2z( const RUNTIME_option_t *options, - int m, int n, int nb, - CHAM_desc_t *A, int Am, int An, int lda, - CHAM_desc_t *B, int Bm, int Bn, int ldb ); + int m, int n, int nb, + const CHAM_desc_t *A, int Am, int An, + const CHAM_desc_t *B, int Bm, int Bn ); void INSERT_TASK_zlag2c( const RUNTIME_option_t *options, - int m, int n, int nb, - CHAM_desc_t *A, int Am, int An, int lda, - CHAM_desc_t *B, int Bm, int Bn, int ldb ); + int m, int n, int nb, + const CHAM_desc_t *A, int Am, int An, + const CHAM_desc_t *B, int Bm, int Bn ); #endif /* _chameleon_tasks_zc_h_ */ -- GitLab