Mentions légales du service
Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
spm
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container Registry
Model registry
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
solverstack
spm
Commits
aedad4bc
Commit
aedad4bc
authored
7 years ago
by
Mathieu Faverge
Browse files
Options
Downloads
Patches
Plain Diff
Protect Fortran files and fix undeclared warnings
parent
d87566f3
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
CMakeLists.txt
+8
-2
8 additions, 2 deletions
CMakeLists.txt
spm_read_driver.c
+2
-1
2 additions, 1 deletion
spm_read_driver.c
with
10 additions
and
3 deletions
CMakeLists.txt
+
8
−
2
View file @
aedad4bc
...
...
@@ -67,16 +67,22 @@ set(spm_sources
spm_dof_extend.c
spm_read_driver.c
spm_gen_fake_values.c
drivers/skitf.f
drivers/iohb.c
drivers/mmio.c
drivers/laplacian.c
drivers/readhb.c
drivers/readijv.c
drivers/readmm.c
drivers/readrsa.c
)
if
(
PASTIX_WITH_FORTRAN
)
set
(
spm_sources
${
spm_sources
}
drivers/skitf.f
drivers/readrsa.c
)
endif
()
add_library
(
pastix_spm
${
spm_sources
}
)
...
...
This diff is collapsed.
Click to expand it.
spm_read_driver.c
+
2
−
1
View file @
aedad4bc
...
...
@@ -82,10 +82,11 @@ spmReadDriver( pastix_driver_t driver,
{
switch
(
driver
)
{
#if defined(PASTIX_WITH_FORTRAN)
case
PastixDriverRSA
:
readRSA
(
filename
,
spm
);
break
;
#endif
case
PastixDriverHB
:
/* TODO: Possible to read the RHS, the solution or a guess of the solution */
readHB
(
filename
,
spm
);
...
...
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