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
5b6e4652
Commit
5b6e4652
authored
Jul 04, 2015
by
Mathieu Faverge
Browse files
Use the global dump to avoid multiple defines
parent
bdce7db9
Changes
4
Hide whitespace changes
Inline
Side-by-side
pastix/sopalin/sequential_zgetrf.c
View file @
5b6e4652
...
...
@@ -29,10 +29,6 @@ pastix_static_zgetrf( sopalin_data_t *sopalin_data )
pastix_int_t
tasknbr
,
*
tasktab
;
Task
*
t
;
#if defined(PASTIX_DEBUG_FACTO)
FILE
*
stream
=
fopen
(
"getrf_L.txt"
,
"w"
);
#endif
tasknbr
=
datacode
->
ttsknbr
[
0
];
tasktab
=
datacode
->
ttsktab
[
0
];
...
...
@@ -53,10 +49,9 @@ pastix_static_zgetrf( sopalin_data_t *sopalin_data )
errorPrint
(
"Taskid unknown for task %ld
\n
"
,
(
long
)
i
);
EXIT
(
MOD_SOPALIN
,
INTERNAL_ERR
);
}
}
#if defined(PASTIX_DEBUG_FACTO)
coeftab_zdump
cblk
(
cblk
,
stream
);
coeftab_zdump
(
datacode
,
"getrf_L.txt"
);
#endif
}
fclose
(
stream
);
}
pastix/sopalin/sequential_zhetrf.c
View file @
5b6e4652
...
...
@@ -29,10 +29,6 @@ pastix_static_zhetrf( sopalin_data_t *sopalin_data )
pastix_int_t
tasknbr
,
*
tasktab
;
Task
*
t
;
#if defined(PASTIX_DEBUG_FACTO)
FILE
*
stream
=
fopen
(
"hetrf_L.txt"
,
"w"
);
#endif
tasknbr
=
datacode
->
ttsknbr
[
0
];
tasktab
=
datacode
->
ttsktab
[
0
];
...
...
@@ -53,10 +49,9 @@ pastix_static_zhetrf( sopalin_data_t *sopalin_data )
errorPrint
(
"Taskid unknown for task %ld
\n
"
,
(
long
)
i
);
EXIT
(
MOD_SOPALIN
,
INTERNAL_ERR
);
}
}
#if defined(PASTIX_DEBUG_FACTO)
coeftab_zdump
cblk
(
cblk
,
stream
);
coeftab_zdump
(
datacode
,
"hetrf_L.txt"
);
#endif
}
fclose
(
stream
);
}
pastix/sopalin/sequential_zpotrf.c
View file @
5b6e4652
...
...
@@ -29,10 +29,6 @@ pastix_static_zpotrf( sopalin_data_t *sopalin_data )
pastix_int_t
tasknbr
,
*
tasktab
;
Task
*
t
;
#if defined(PASTIX_DEBUG_FACTO)
FILE
*
stream
=
fopen
(
"potrf_L.txt"
,
"w"
);
#endif
tasknbr
=
datacode
->
ttsknbr
[
0
];
tasktab
=
datacode
->
ttsktab
[
0
];
...
...
@@ -53,10 +49,9 @@ pastix_static_zpotrf( sopalin_data_t *sopalin_data )
errorPrint
(
"Taskid unknown for task %ld
\n
"
,
(
long
)
i
);
EXIT
(
MOD_SOPALIN
,
INTERNAL_ERR
);
}
}
#if defined(PASTIX_DEBUG_FACTO)
coeftab_zdump
cblk
(
cblk
,
stream
);
coeftab_zdump
(
datacode
,
"potrf_L.txt"
);
#endif
}
fclose
(
stream
);
}
pastix/sopalin/sequential_zsytrf.c
View file @
5b6e4652
...
...
@@ -29,10 +29,6 @@ pastix_static_zsytrf( sopalin_data_t *sopalin_data )
pastix_int_t
tasknbr
,
*
tasktab
;
Task
*
t
;
#if defined(PASTIX_DEBUG_FACTO)
FILE
*
stream
=
fopen
(
"sytrf_L.txt"
,
"w"
);
#endif
tasknbr
=
datacode
->
ttsknbr
[
0
];
tasktab
=
datacode
->
ttsktab
[
0
];
...
...
@@ -53,10 +49,9 @@ pastix_static_zsytrf( sopalin_data_t *sopalin_data )
errorPrint
(
"Taskid unknown for task %ld
\n
"
,
(
long
)
i
);
EXIT
(
MOD_SOPALIN
,
INTERNAL_ERR
);
}
}
#if defined(PASTIX_DEBUG_FACTO)
coeftab_zdump
cblk
(
cblk
,
stream
);
coeftab_zdump
(
datacode
,
"sytrf_L.txt"
);
#endif
}
fclose
(
stream
);
}
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