From f175b885ba496094b4c0477bbeaa72a094822582 Mon Sep 17 00:00:00 2001
From: Florent Pruvost <florent.pruvost@inria.fr>
Date: Wed, 4 Sep 2024 14:13:01 +0200
Subject: [PATCH] Enable insert_task_zlacpy_on_remote_node

---
 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 2d227b37b..aa8d73ed3 100644
--- a/runtime/starpu/codelets/codelet_zlacpy.c
+++ b/runtime/starpu/codelets/codelet_zlacpy.c
@@ -151,7 +151,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) && 0 )
+         (displA == 0) && (displB == 0) )
     {
 #if defined(CHAMELEON_USE_MPI)
         insert_task_zlacpy_on_remote_node( options,
@@ -227,7 +227,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) && 0 )
+         (tileB->m == m) && (tileB->n == n) )
     {
 #if defined(CHAMELEON_USE_MPI)
         insert_task_zlacpy_on_remote_node( options,
-- 
GitLab