Mentions légales du service

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

Make the map interface deprecated

parent d33b70e3
No related branches found
No related tags found
1 merge request!201Modify the map function to take into parameters an variadic number of data
......@@ -84,14 +84,14 @@ int CHAMELEON_map_Tile( cham_access_t access,
cham_uplo_t uplo,
CHAM_desc_t *A,
cham_unary_operator_t op_fct,
void *op_args );
void *op_args ) __attribute__((deprecated("Please refer to CHAMELEON_map_Tile_Async for a more complete interface")));
int CHAMELEON_map_Tile_Async( cham_access_t access,
cham_uplo_t uplo,
CHAM_desc_t *A,
cham_unary_operator_t op_fct,
void *op_args,
RUNTIME_sequence_t *sequence,
RUNTIME_request_t *request );
RUNTIME_request_t *request ) __attribute__((deprecated("Please refer to CHAMELEON_mapv_Tile_Async for a more complete interface")));
int CHAMELEON_mapv_Tile( cham_uplo_t uplo,
int ndata,
......
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