Mentions légales du service

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

plrnt: Remove the check for square tiles that is useless for plrnt kernel

parent 06e70618
No related branches found
No related tags found
1 merge request!201Modify the map function to take into parameters an variadic number of data
......@@ -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)
......
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