From f9f323a02e3203be06755d14b78c184ae19e6693 Mon Sep 17 00:00:00 2001 From: Raphael Boucherie <raphael.boucherie@inria.fr> Date: Mon, 12 Jun 2017 10:38:55 +0200 Subject: [PATCH] Silent warnings with Quark compilation --- runtime/quark/codelets/codelet_dataflush.c | 2 +- runtime/quark/codelets/codelet_zgeadd.c | 2 ++ runtime/quark/codelets/codelet_zgetrf_incpiv.c | 2 ++ runtime/quark/codelets/codelet_ztradd.c | 2 ++ 4 files changed, 7 insertions(+), 1 deletion(-) diff --git a/runtime/quark/codelets/codelet_dataflush.c b/runtime/quark/codelets/codelet_dataflush.c index 65e000317..1334e8959 100644 --- a/runtime/quark/codelets/codelet_dataflush.c +++ b/runtime/quark/codelets/codelet_dataflush.c @@ -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 diff --git a/runtime/quark/codelets/codelet_zgeadd.c b/runtime/quark/codelets/codelet_zgeadd.c index 7a9e8af10..4fc1c22cf 100644 --- a/runtime/quark/codelets/codelet_zgeadd.c +++ b/runtime/quark/codelets/codelet_zgeadd.c @@ -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; } diff --git a/runtime/quark/codelets/codelet_zgetrf_incpiv.c b/runtime/quark/codelets/codelet_zgetrf_incpiv.c index dacb1c0d8..d383dd2f5 100644 --- a/runtime/quark/codelets/codelet_zgetrf_incpiv.c +++ b/runtime/quark/codelets/codelet_zgetrf_incpiv.c @@ -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; } diff --git a/runtime/quark/codelets/codelet_ztradd.c b/runtime/quark/codelets/codelet_ztradd.c index cd7919d90..f5b566b51 100644 --- a/runtime/quark/codelets/codelet_ztradd.c +++ b/runtime/quark/codelets/codelet_ztradd.c @@ -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; } -- GitLab