Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
solverstack
PaStiX
Commits
bc52203c
Commit
bc52203c
authored
Mar 13, 2016
by
Mathieu Faverge
Browse files
Oops, forgot to change the descriptor
parent
95c3fca8
Changes
4
Hide whitespace changes
Inline
Side-by-side
sopalin/sequential_zgetrf.c
View file @
bc52203c
...
...
@@ -109,7 +109,6 @@ void
parsec_zgetrf
(
pastix_data_t
*
pastix_data
,
sopalin_data_t
*
sopalin_data
)
{
sparse_matrix_desc_t
desc
;
dague_context_t
*
ctx
;
/* Start PaRSEC */
...
...
@@ -120,7 +119,7 @@ parsec_zgetrf( pastix_data_t *pastix_data,
ctx
=
pastix_data
->
parsec
;
/* Run the facto */
dsparse_zgetrf_sp
(
ctx
,
&
desc
,
sopalin_data
);
dsparse_zgetrf_sp
(
ctx
,
sopalin_data
->
solvmtx
->
parsec_
desc
,
sopalin_data
);
}
#endif
...
...
sopalin/sequential_zhetrf.c
View file @
bc52203c
...
...
@@ -113,7 +113,6 @@ void
parsec_zhetrf
(
pastix_data_t
*
pastix_data
,
sopalin_data_t
*
sopalin_data
)
{
sparse_matrix_desc_t
desc
;
dague_context_t
*
ctx
;
/* Start PaRSEC */
...
...
@@ -124,7 +123,7 @@ parsec_zhetrf( pastix_data_t *pastix_data,
ctx
=
pastix_data
->
parsec
;
/* Run the facto */
dsparse_zhetrf_sp
(
ctx
,
&
desc
,
sopalin_data
);
dsparse_zhetrf_sp
(
ctx
,
sopalin_data
->
solvmtx
->
parsec_
desc
,
sopalin_data
);
}
#endif
...
...
sopalin/sequential_zpotrf.c
View file @
bc52203c
...
...
@@ -109,7 +109,6 @@ void
parsec_zpotrf
(
pastix_data_t
*
pastix_data
,
sopalin_data_t
*
sopalin_data
)
{
sparse_matrix_desc_t
desc
;
dague_context_t
*
ctx
;
/* Start PaRSEC */
...
...
@@ -120,7 +119,7 @@ parsec_zpotrf( pastix_data_t *pastix_data,
ctx
=
pastix_data
->
parsec
;
/* Run the facto */
dsparse_zpotrf_sp
(
ctx
,
&
desc
,
sopalin_data
);
dsparse_zpotrf_sp
(
ctx
,
sopalin_data
->
solvmtx
->
parsec_
desc
,
sopalin_data
);
}
#endif
...
...
sopalin/sequential_zsytrf.c
View file @
bc52203c
...
...
@@ -113,7 +113,6 @@ void
parsec_zsytrf
(
pastix_data_t
*
pastix_data
,
sopalin_data_t
*
sopalin_data
)
{
sparse_matrix_desc_t
desc
;
dague_context_t
*
ctx
;
/* Start PaRSEC */
...
...
@@ -124,7 +123,7 @@ parsec_zsytrf( pastix_data_t *pastix_data,
ctx
=
pastix_data
->
parsec
;
/* Run the facto */
dsparse_zsytrf_sp
(
ctx
,
&
desc
,
sopalin_data
);
dsparse_zsytrf_sp
(
ctx
,
sopalin_data
->
solvmtx
->
parsec_
desc
,
sopalin_data
);
}
#endif
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment