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
acdef8d2
Commit
acdef8d2
authored
Jan 31, 2017
by
Mathieu Faverge
Browse files
Dague to Parsec in sequential_z*.c
parent
3a42c217
Changes
6
Hide whitespace changes
Inline
Side-by-side
sopalin/sequential_zdiag.c
View file @
acdef8d2
...
...
@@ -23,11 +23,11 @@
#include "pastix_zcores.h"
#if defined(PASTIX_WITH_PARSEC)
#include <
dague
.h>
#include <
dague
/data.h>
#include <
dague
/data_distribution.h>
#include <
parsec
.h>
#include <
parsec
/data.h>
#include <
parsec
/data_distribution.h>
int
dsparse_zdiag_sp
(
dague
_context_t
*
dague
,
int
dsparse_zdiag_sp
(
parsec
_context_t
*
parsec
,
sparse_matrix_desc_t
*
A
,
sopalin_data_t
*
sopalin_data
,
int
nrhs
,
pastix_complex64_t
*
b
,
int
ldb
);
...
...
@@ -148,7 +148,7 @@ void
parsec_zdiag
(
pastix_data_t
*
pastix_data
,
sopalin_data_t
*
sopalin_data
,
int
nrhs
,
pastix_complex64_t
*
b
,
int
ldb
)
{
dague
_context_t
*
ctx
;
parsec
_context_t
*
ctx
;
/* Start PaRSEC */
if
(
pastix_data
->
parsec
==
NULL
)
{
...
...
sopalin/sequential_zgetrf.c
View file @
acdef8d2
...
...
@@ -23,16 +23,13 @@
#include "pastix_zcores.h"
#if defined(PASTIX_WITH_PARSEC)
#include <
dague
.h>
#include <
dague
/data.h>
#include <
dague
/data_distribution.h>
#include <
parsec
.h>
#include <
parsec
/data.h>
#include <
parsec
/data_distribution.h>
int
dsparse_zgetrf_1dplus_sp
(
dague
_context_t
*
dague
,
int
dsparse_zgetrf_1dplus_sp
(
parsec
_context_t
*
parsec
,
sparse_matrix_desc_t
*
A
,
sopalin_data_t
*
sopalin_data
);
int
dsparse_zgetrf_2d_sp
(
dague_context_t
*
dague
,
sparse_matrix_desc_t
*
A
,
sopalin_data_t
*
sopalin_data
);
#endif
void
...
...
@@ -120,7 +117,7 @@ void
parsec_zgetrf_1dplus
(
pastix_data_t
*
pastix_data
,
sopalin_data_t
*
sopalin_data
)
{
dague
_context_t
*
ctx
;
parsec
_context_t
*
ctx
;
/* Start PaRSEC */
if
(
pastix_data
->
parsec
==
NULL
)
{
...
...
@@ -142,7 +139,7 @@ void
parsec_zgetrf_2d
(
pastix_data_t
*
pastix_data
,
sopalin_data_t
*
sopalin_data
)
{
dague
_context_t
*
ctx
;
parsec
_context_t
*
ctx
;
/* Start PaRSEC */
if
(
pastix_data
->
parsec
==
NULL
)
{
...
...
@@ -165,12 +162,11 @@ static void (*zgetrf_table[4])(pastix_data_t *, sopalin_data_t *) = {
sequential_zgetrf
,
thread_zgetrf
,
#if defined(PASTIX_WITH_PARSEC)
parsec_zgetrf_2d
,
parsec_zgetrf_1dplus
,
#else
NULL
,
NULL
#endif
NULL
};
void
...
...
sopalin/sequential_zhetrf.c
View file @
acdef8d2
...
...
@@ -23,9 +23,9 @@
#include "pastix_zcores.h"
#if defined(PASTIX_WITH_PARSEC)
#include <
dague
.h>
#include <
dague
/data.h>
#include <
dague
/data_distribution.h>
#include <
parsec
.h>
#include <
parsec
/data.h>
#include <
parsec
/data_distribution.h>
#endif
void
...
...
@@ -121,7 +121,7 @@ void
parsec_zhetrf
(
pastix_data_t
*
pastix_data
,
sopalin_data_t
*
sopalin_data
)
{
dague
_context_t
*
ctx
;
parsec
_context_t
*
ctx
;
/* Start PaRSEC */
if
(
pastix_data
->
parsec
==
NULL
)
{
...
...
sopalin/sequential_zpotrf.c
View file @
acdef8d2
...
...
@@ -23,11 +23,11 @@
#include "pastix_zcores.h"
#if defined(PASTIX_WITH_PARSEC)
#include <
dague
.h>
#include <
dague
/data.h>
#include <
dague
/data_distribution.h>
#include <
parsec
.h>
#include <
parsec
/data.h>
#include <
parsec
/data_distribution.h>
int
dsparse_zpotrf_sp
(
dague
_context_t
*
dague
,
int
dsparse_zpotrf_sp
(
parsec
_context_t
*
parsec
,
sparse_matrix_desc_t
*
A
,
sopalin_data_t
*
sopalin_data
);
#endif
...
...
@@ -117,7 +117,7 @@ void
parsec_zpotrf
(
pastix_data_t
*
pastix_data
,
sopalin_data_t
*
sopalin_data
)
{
dague
_context_t
*
ctx
;
parsec
_context_t
*
ctx
;
/* Start PaRSEC */
if
(
pastix_data
->
parsec
==
NULL
)
{
...
...
sopalin/sequential_zsytrf.c
View file @
acdef8d2
...
...
@@ -23,9 +23,9 @@
#include "pastix_zcores.h"
#if defined(PASTIX_WITH_PARSEC)
#include <
dague
.h>
#include <
dague
/data.h>
#include <
dague
/data_distribution.h>
#include <
parsec
.h>
#include <
parsec
/data.h>
#include <
parsec
/data_distribution.h>
#endif
void
...
...
@@ -121,7 +121,7 @@ void
parsec_zsytrf
(
pastix_data_t
*
pastix_data
,
sopalin_data_t
*
sopalin_data
)
{
dague
_context_t
*
ctx
;
parsec
_context_t
*
ctx
;
/* Start PaRSEC */
if
(
pastix_data
->
parsec
==
NULL
)
{
...
...
sopalin/sequential_ztrsm.c
View file @
acdef8d2
...
...
@@ -24,11 +24,11 @@
#include "pastix_zcores.h"
#if defined(PASTIX_WITH_PARSEC)
#include <
dague
.h>
#include <
dague
/data.h>
#include <
dague
/data_distribution.h>
#include <
parsec
.h>
#include <
parsec
/data.h>
#include <
parsec
/data_distribution.h>
int
dsparse_ztrsm_sp
(
dague
_context_t
*
dague
,
int
dsparse_ztrsm_sp
(
parsec
_context_t
*
parsec
,
sparse_matrix_desc_t
*
A
,
int
side
,
int
uplo
,
int
trans
,
int
diag
,
sopalin_data_t
*
sopalin_data
,
...
...
@@ -201,7 +201,7 @@ parsec_ztrsm( pastix_data_t *pastix_data, int side, int uplo, int trans, int dia
sopalin_data_t
*
sopalin_data
,
int
nrhs
,
pastix_complex64_t
*
b
,
int
ldb
)
{
dague
_context_t
*
ctx
;
parsec
_context_t
*
ctx
;
/* Start PaRSEC */
if
(
pastix_data
->
parsec
==
NULL
)
{
...
...
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