Mentions légales du service

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

Fix parameters in tpqrt/tpmqrt starpu codelets

parent 14486691
No related branches found
No related tags found
1 merge request!8Modify the interface of the tpgqrt routines, and fix some numerical bug within the routine
This commit is part of merge request !8. Comments created here will be created in the context of that merge request.
...@@ -49,6 +49,7 @@ void MORSE_TASK_ztpmqrt( const MORSE_option_t *options, ...@@ -49,6 +49,7 @@ void MORSE_TASK_ztpmqrt( const MORSE_option_t *options,
STARPU_VALUE, &N, sizeof(int), STARPU_VALUE, &N, sizeof(int),
STARPU_VALUE, &K, sizeof(int), STARPU_VALUE, &K, sizeof(int),
STARPU_VALUE, &L, sizeof(int), STARPU_VALUE, &L, sizeof(int),
STARPU_VALUE, &ib, sizeof(int),
STARPU_R, RTBLKADDR(V, MORSE_Complex64_t, Vm, Vn), STARPU_R, RTBLKADDR(V, MORSE_Complex64_t, Vm, Vn),
STARPU_VALUE, &ldv, sizeof(int), STARPU_VALUE, &ldv, sizeof(int),
STARPU_R, RTBLKADDR(T, MORSE_Complex64_t, Tm, Tn), STARPU_R, RTBLKADDR(T, MORSE_Complex64_t, Tm, Tn),
......
...@@ -43,6 +43,7 @@ void MORSE_TASK_ztpqrt( const MORSE_option_t *options, ...@@ -43,6 +43,7 @@ void MORSE_TASK_ztpqrt( const MORSE_option_t *options,
STARPU_VALUE, &M, sizeof(int), STARPU_VALUE, &M, sizeof(int),
STARPU_VALUE, &N, sizeof(int), STARPU_VALUE, &N, sizeof(int),
STARPU_VALUE, &L, sizeof(int), STARPU_VALUE, &L, sizeof(int),
STARPU_VALUE, &ib, sizeof(int),
STARPU_RW, RTBLKADDR(A, MORSE_Complex64_t, Am, An), STARPU_RW, RTBLKADDR(A, MORSE_Complex64_t, Am, An),
STARPU_VALUE, &lda, sizeof(int), STARPU_VALUE, &lda, sizeof(int),
STARPU_RW, RTBLKADDR(B, MORSE_Complex64_t, Bm, Bn), STARPU_RW, RTBLKADDR(B, MORSE_Complex64_t, Bm, Bn),
......
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