Mentions légales du service

Skip to content
Snippets Groups Projects

Fix lacpy prototypes

Merged Abel Calluaud requested to merge acalluau/test_fembem:mr_lacpy_proto_2 into master
All threads resolved!
+ 2
2
@@ -262,7 +262,7 @@ HCHAMELEON_destroy_matrix( HCHAM_desc_t *hdescA )
}
/* Provides a flat matrix (array of values) given an hmatrix structure */
typedef int (*core_lacpy_fct_t)( cham_uplo_t, int, int, const void *, int, void *, int );
typedef void (*core_lacpy_fct_t)( cham_uplo_t, int, int, const void *, int, void *, int );
static void
TCORE_uncompress( HCHAM_desc_t *hdescA,
@@ -310,7 +310,7 @@ TCORE_uncompress( HCHAM_desc_t *hdescA,
free(col_ptr);
}
else {
int (*CORE_lacpy)( cham_uplo_t, int, int,
void (*CORE_lacpy)( cham_uplo_t, int, int,
const void *, int, void *, int ) = NULL;
switch( hdescA->super->dtyp ) {
#if defined(CHAMELEON_PREC_S)
Loading