From 482a6aaed6951f7efed9aaa7e80c1544851145b4 Mon Sep 17 00:00:00 2001 From: Mathieu Faverge <mathieu.faverge@inria.fr> Date: Tue, 23 Jan 2024 18:30:45 +0100 Subject: [PATCH] starpu/lacpy: Temporary disable the lacpy optimization as long as we have not found the issue --- runtime/starpu/codelets/codelet_zlacpy.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/runtime/starpu/codelets/codelet_zlacpy.c b/runtime/starpu/codelets/codelet_zlacpy.c index daa6ba6bb..4d4f10185 100644 --- a/runtime/starpu/codelets/codelet_zlacpy.c +++ b/runtime/starpu/codelets/codelet_zlacpy.c @@ -149,7 +149,7 @@ void INSERT_TASK_zlacpyx( const RUNTIME_option_t *options, if ( (uplo == ChamUpperLower) && (tileA->m == m) && (tileA->n == n) && (tileB->m == m) && (tileB->n == n) && - (displA == 0) && (displB == 0) ) + (displA == 0) && (displB == 0) && 0 ) { #if defined(CHAMELEON_USE_MPI) insert_task_zlacpy_on_remote_node( options, @@ -225,7 +225,7 @@ void INSERT_TASK_zlacpy( const RUNTIME_option_t *options, /* Insert the task */ if ( (uplo == ChamUpperLower) && (tileA->m == m) && (tileA->n == n) && - (tileB->m == m) && (tileB->n == n) ) + (tileB->m == m) && (tileB->n == n) && 0 ) { #if defined(CHAMELEON_USE_MPI) insert_task_zlacpy_on_remote_node( options, -- GitLab