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
aa44b11f
Commit
aa44b11f
authored
7 years ago
by
Mathieu Faverge
Browse files
Options
Downloads
Patches
Plain Diff
Cleanup some documentation
parent
80ebe016
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
spm.c
+16
-7
16 additions, 7 deletions
spm.c
with
16 additions
and
7 deletions
spm.c
+
16
−
7
View file @
aa44b11f
...
...
@@ -1345,14 +1345,19 @@ spmScalVector(double alpha, pastix_spm_t* spm, void *x)
/**
*******************************************************************************
*
* @brief Scale a dense matrix corresponding to a set of RHS (wrapper to LAPACKE_xlascl)
* @brief Scale a dense matrix corresponding to a set of RHS (wrapper to
* LAPACKE_xlascl)
*
* A = alpha * A
*
*******************************************************************************
*
* @param[in] flt
* Datatype.
* Datatype of the matrix that must be:
* @arg PastixFloat
* @arg PastixDouble
* @arg PastixComplex32
* @arg PastixComplex64
*
* @param[in] m
* Number of rows of the matrix A.
...
...
@@ -1361,18 +1366,22 @@ spmScalVector(double alpha, pastix_spm_t* spm, void *x)
* Number of columns of the matrix A.
*
* @param[in] alpha
*
The scaling parameter.
* The scaling parameter.
*
* @param[inout] A
* The matrix
of RHS to scal.
* The
dense
matrix
to scale of size lda-by-n
*
* @param[in] lda
* Defines the leading dimension of A when multiple right hand sides
* are available. lda >= m.
* Defines the leading dimension of A. lda >= m.
*
*******************************************************************************/
void
spmScalRHS
(
pastix_coeftype_t
flt
,
double
alpha
,
pastix_int_t
m
,
pastix_int_t
n
,
void
*
A
,
pastix_int_t
lda
)
spmScalRHS
(
pastix_coeftype_t
flt
,
double
alpha
,
pastix_int_t
m
,
pastix_int_t
n
,
void
*
A
,
pastix_int_t
lda
)
{
switch
(
flt
)
{
...
...
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