From d61f70ddc4b97cc8d8c0fd79abdab8766b89eccd Mon Sep 17 00:00:00 2001 From: Mathieu Faverge <mathieu.faverge@inria.fr> Date: Thu, 15 Dec 2016 14:50:02 +0100 Subject: [PATCH] Fix mistake on quark zlascal codelet --- runtime/quark/codelets/codelet_zlascal.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/runtime/quark/codelets/codelet_zlascal.c b/runtime/quark/codelets/codelet_zlascal.c index ab96da473..747695ef4 100644 --- a/runtime/quark/codelets/codelet_zlascal.c +++ b/runtime/quark/codelets/codelet_zlascal.c @@ -58,12 +58,12 @@ void MORSE_TASK_zlascal(const MORSE_option_t *options, quark_option_t *opt = (quark_option_t*)(options->schedopt); DAG_CORE_LASCAL; QUARK_Insert_Task(opt->quark, CORE_zlascal_quark, (Quark_Task_Flags*)opt, - sizeof(MORSE_enum), &uplo, VALUE, - sizeof(int), &m, VALUE, - sizeof(int), &n, VALUE, - sizeof(MORSE_Complex64_t), alpha, VALUE, - sizeof(MORSE_Complex64_t)*nb*nb, RTBLKADDR(A, MORSE_Complex64_t, Am, An), INOUT, - sizeof(int), &lda, VALUE, + sizeof(MORSE_enum), &uplo, VALUE, + sizeof(int), &m, VALUE, + sizeof(int), &n, VALUE, + sizeof(MORSE_Complex64_t), &alpha, VALUE, + sizeof(MORSE_Complex64_t)*nb*nb, RTBLKADDR(A, MORSE_Complex64_t, Am, An), INOUT, + sizeof(int), &lda, VALUE, 0); } -- GitLab