Mentions légales du service

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

chameleon: Fix incorrect enum type

parent a0056374
No related branches found
No related tags found
No related merge requests found
......@@ -289,7 +289,7 @@ extern int (*CHAMELEON_getrf_nopiv_Tile)( CHAM_desc_t * );
extern int (*CHAMELEON_getrs_nopiv_Tile)( CHAM_desc_t *, CHAM_desc_t * );
extern int (*CHAMELEON_build_Tile)( cham_uplo_t, CHAM_desc_t *, void *, void* );
int testFEMBEM_initChameleon( cham_flttype_t stype );
int testFEMBEM_initChameleon( ScalarType stype );
int CHAMELEON_gemm_Tile( CHAM_desc_t *descA, CHAM_desc_t *descX, CHAM_desc_t *descY );
int CHAMELEON_generate_matrix( cham_flttype_t flttype, int NB, int PQ[2],
......
......@@ -9,7 +9,7 @@ int (*CHAMELEON_getrf_nopiv_Tile)( CHAM_desc_t * ) = NULL;
int (*CHAMELEON_getrs_nopiv_Tile)( CHAM_desc_t *, CHAM_desc_t * ) = NULL; // LU Solve
int
testFEMBEM_initChameleon( cham_flttype_t stype ) {
testFEMBEM_initChameleon( ScalarType stype ) {
int ierr = 0;
/* Set the scalar type and the functions used by CHAMELEON */
......
......@@ -16,7 +16,7 @@ int testCHAMELEON(double * relative_error) {
/* Cree la Matrice CHAMELEON */
testFEMBEM_initChameleon( (cham_flttype_t)stype );
testFEMBEM_initChameleon( stype );
/* Get the default NB parameter */
int NB ;
......
......@@ -38,7 +38,7 @@ int testHCHAMELEON(double * relative_error) {
/* Cree la H-Matrice */
testFEMBEM_initChameleon( (cham_flttype_t)stype );
testFEMBEM_initChameleon( stype );
CHAMELEON_Enable( CHAMELEON_GENERIC ); // Summa is using lacpy that is not supported for hmat yet
/* Get the default NB parameter */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment