Mentions légales du service

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

tasks: Fix prototype of mixed precision conversion tasks

parent 035ab4aa
No related branches found
No related tags found
1 merge request!344Mixed Precision: Make sure the mixed precision conversion files are correctly handled during the compilation
......@@ -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_ */
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