From 2cfae8959a27e8a84800d6aef1e124dfccc618bd Mon Sep 17 00:00:00 2001
From: Mathieu Faverge <mathieu.faverge@inria.fr>
Date: Fri, 13 Mar 2020 11:44:01 +0100
Subject: [PATCH] plrnt: Remove the check for square tiles that is useless for
 plrnt kernel

---
 compute/zplrnt.c | 9 ++-------
 1 file changed, 2 insertions(+), 7 deletions(-)

diff --git a/compute/zplrnt.c b/compute/zplrnt.c
index 7a3890c07..506b8a9d8 100644
--- a/compute/zplrnt.c
+++ b/compute/zplrnt.c
@@ -11,14 +11,14 @@
  *
  * @brief Chameleon zplrnt wrappers
  *
- * @version 1.2.0
+ * @version 1.3.0
  * @comment This file has been automatically generated
  *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
  * @author Florent Pruvost
- * @date 2022-02-22
+ * @date 2024-03-08
  * @precisions normal z -> s d c
  *
  */
@@ -251,11 +251,6 @@ int CHAMELEON_zplrnt_Tile_Async( CHAM_desc_t     *A,
         chameleon_error("CHAMELEON_zplrnt_Tile", "invalid descriptor");
         return chameleon_request_fail(sequence, request, CHAMELEON_ERR_ILLEGAL_VALUE);
     }
-    /* Check input arguments */
-    if (A->nb != A->mb) {
-        chameleon_error("CHAMELEON_zplrnt_Tile", "only square tiles supported");
-        return chameleon_request_fail(sequence, request, CHAMELEON_ERR_ILLEGAL_VALUE);
-    }
 
     /* Quick return */
     if (chameleon_min( A->m, A->n ) == 0)
-- 
GitLab