Mentions légales du service

Skip to content
Snippets Groups Projects
Commit f9f323a0 authored by BOUCHERIE Raphael's avatar BOUCHERIE Raphael
Browse files

Silent warnings with Quark compilation

parent efffaa5a
No related branches found
No related tags found
1 merge request!49Hotfix
......@@ -29,7 +29,7 @@
void MORSE_TASK_dataflush(const MORSE_option_t *options,
const MORSE_desc_t *A, int Am, int An)
{
(void)options; (void)A;
(void)options; (void)A; (void)Am; (void)An;
/*
* This is useful for StarPU implementation, if it happens in Quark, it will
......
......@@ -117,4 +117,6 @@ void MORSE_TASK_zgeadd(const MORSE_option_t *options,
sizeof(MORSE_Complex64_t)*ldb*n, RTBLKADDR(B, MORSE_Complex64_t, Bm, Bn), INOUT,
sizeof(int), &ldb, VALUE,
0);
(void)nb;
}
......@@ -107,6 +107,8 @@ void MORSE_TASK_zgetrf_incpiv(const MORSE_option_t *options,
sizeof(MORSE_bool), &check_info, VALUE,
sizeof(int), &iinfo, VALUE,
0);
(void)L; (void)Lm; (void)Ln; (void)ldl;
}
......
......@@ -123,5 +123,7 @@ void MORSE_TASK_ztradd(const MORSE_option_t *options,
sizeof(MORSE_Complex64_t)*ldb*n, RTBLKADDR(B, MORSE_Complex64_t, Bm, Bn), INOUT,
sizeof(int), &ldb, VALUE,
0);
(void)nb;
}
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