Mentions légales du service
Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
test_FEMBEM
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Package registry
Model registry
Operate
Terraform modules
Monitor
Service Desk
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Admin message
GitLab upgrade completed. Current version is 17.11.3.
Show more breadcrumbs
solverstack
test_FEMBEM
Commits
5bfc9b0c
Commit
5bfc9b0c
authored
2 years ago
by
Mathieu Faverge
Browse files
Options
Downloads
Patches
Plain Diff
chameleon: Fix incorrect enum type
parent
a0056374
No related branches found
No related tags found
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
include/main.h
+1
-1
1 addition, 1 deletion
include/main.h
src/chameleon.c
+1
-1
1 addition, 1 deletion
src/chameleon.c
src/testCHAMELEON.c
+1
-1
1 addition, 1 deletion
src/testCHAMELEON.c
src/testHCHAMELEON.c
+1
-1
1 addition, 1 deletion
src/testHCHAMELEON.c
with
4 additions
and
4 deletions
include/main.h
+
1
−
1
View file @
5bfc9b0c
...
...
@@ -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_fltt
ype
_t
stype
);
int
testFEMBEM_initChameleon
(
ScalarT
ype
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
],
...
...
This diff is collapsed.
Click to expand it.
src/chameleon.c
+
1
−
1
View file @
5bfc9b0c
...
...
@@ -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_fltt
ype
_t
stype
)
{
testFEMBEM_initChameleon
(
ScalarT
ype
stype
)
{
int
ierr
=
0
;
/* Set the scalar type and the functions used by CHAMELEON */
...
...
This diff is collapsed.
Click to expand it.
src/testCHAMELEON.c
+
1
−
1
View file @
5bfc9b0c
...
...
@@ -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
;
...
...
This diff is collapsed.
Click to expand it.
src/testHCHAMELEON.c
+
1
−
1
View file @
5bfc9b0c
...
...
@@ -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 */
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment