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
e1ba133b
Commit
e1ba133b
authored
8 years ago
by
RAMET Pierre
Browse files
Options
Downloads
Patches
Plain Diff
fix uint32_t for solver ctrbcnt
parent
2e8d026b
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
spm.c
+2
-2
2 additions, 2 deletions
spm.c
spm_read_driver.c
+1
-0
1 addition, 0 deletions
spm_read_driver.c
with
3 additions
and
2 deletions
spm.c
+
2
−
2
View file @
e1ba133b
...
...
@@ -734,7 +734,7 @@ spmCheckAndCorrect( pastix_spm_t *spm )
/* Merge the duplicated entries by summing the values */
count
=
spmMergeDuplicate
(
newspm
);
if
(
count
>
0
)
{
fprintf
(
stderr
,
"spmCheckAndCorrect: %ld entries have been merged
\n
"
,
(
int64_t
)
count
);
fprintf
(
stderr
,
"spmCheckAndCorrect: %ld entries have been merged
\n
"
,
(
long
)
count
);
}
/**
...
...
@@ -745,7 +745,7 @@ spmCheckAndCorrect( pastix_spm_t *spm )
if
(
newspm
->
mtxtype
==
PastixGeneral
)
{
count
=
spmSymmetrize
(
newspm
);
if
(
count
>
0
)
{
fprintf
(
stderr
,
"spmCheckAndCorrect: %ld entries have been added for symmetry
\n
"
,
(
int64_t
)
count
);
fprintf
(
stderr
,
"spmCheckAndCorrect: %ld entries have been added for symmetry
\n
"
,
(
long
)
count
);
}
}
else
{
...
...
This diff is collapsed.
Click to expand it.
spm_read_driver.c
+
1
−
0
View file @
e1ba133b
...
...
@@ -316,5 +316,6 @@ spmReadDriver( pastix_driver_t driver,
spmUpdateComputedFields
(
spm
);
(
void
)
comm
;
return
PASTIX_SUCCESS
;
}
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