PaStiX Handbook
6.4.0
|
#include "common.h"
#include "blend/solver.h"
#include "sopalin/sopalin_data.h"
#include "pastix_zcores.h"
Go to the source code of this file.
Functions | |
void | sequential_zdiag (pastix_data_t *pastix_data, sopalin_data_t *sopalin_data, pastix_rhs_t rhsb) |
Apply the diagonal solve (sequential version) More... | |
void | thread_zdiag_static (isched_thread_t *ctx, void *args) |
Applies the diagonal solve. More... | |
void | static_zdiag (pastix_data_t *pastix_data, sopalin_data_t *sopalin_data, pastix_rhs_t rhsb) |
Apply the diagonal solve (static version) More... | |
void | thread_zdiag_dynamic (isched_thread_t *ctx, void *args) |
Applies the diagonal solve. More... | |
void | dynamic_zdiag (pastix_data_t *pastix_data, sopalin_data_t *sopalin_data, pastix_rhs_t rhsb) |
Apply the diagonal solve (dynamic version) More... | |
void | sopalin_zdiag (pastix_data_t *pastix_data, sopalin_data_t *sopalin_data, pastix_rhs_t rhsb) |
Apply the diagonal solve. More... | |
Definition in file sequential_zdiag.c.
void sequential_zdiag | ( | pastix_data_t * | pastix_data, |
sopalin_data_t * | sopalin_data, | ||
pastix_rhs_t | rhsb | ||
) |
Apply the diagonal solve (sequential version)
[in] | pastix_data | The pastix_data structure. |
[in] | sopalin_data | The SolverMatrix structure from PaStiX. |
[in] | rhsb | The pointer to the rhs data structure that holds the vectors of the right hand side. |
Definition at line 49 of file sequential_zdiag.c.
References pastix_rhs_s::b, solver_matrix_s::cblktab, pastix_data_s::iparm, IPARM_SCHUR_SOLV_MODE, and pastix_int_t.
void thread_zdiag_static | ( | isched_thread_t * | ctx, |
void * | args | ||
) |
Applies the diagonal solve.
[in] | ctx | Thread structure of the execution context of one instance of the scheduler. |
[in] | args | Arguments for the kernel diagonal call. |
Definition at line 97 of file sequential_zdiag.c.
References pastix_data_s::iparm, IPARM_SCHUR_SOLV_MODE, and pastix_int_t.
Referenced by static_zdiag().
void static_zdiag | ( | pastix_data_t * | pastix_data, |
sopalin_data_t * | sopalin_data, | ||
pastix_rhs_t | rhsb | ||
) |
Apply the diagonal solve (static version)
[in] | pastix_data | The pastix_data structure. |
[in] | sopalin_data | The SolverMatrix structure from PaStiX. |
[in] | rhsb | The pointer to the rhs data structure that holds the vectors of the right hand side. |
Definition at line 153 of file sequential_zdiag.c.
References pastix_data_s::isched, and thread_zdiag_static().
void thread_zdiag_dynamic | ( | isched_thread_t * | ctx, |
void * | args | ||
) |
Applies the diagonal solve.
[in] | ctx | Thread structure of the execution context of one instance of the scheduler. |
[in] | args | Arguments for the kernel diagonal call. |
Definition at line 177 of file sequential_zdiag.c.
References pastix_data_s::iparm, IPARM_SCHUR_SOLV_MODE, pastix_int_t, and pqueueInit().
void dynamic_zdiag | ( | pastix_data_t * | pastix_data, |
sopalin_data_t * | sopalin_data, | ||
pastix_rhs_t | rhsb | ||
) |
Apply the diagonal solve (dynamic version)
[in] | pastix_data | The pastix_data structure. |
[in] | sopalin_data | The SolverMatrix structure from PaStiX. |
[in] | rhsb | The pointer to the rhs data structure that holds the vectors of the right hand side. |
Definition at line 262 of file sequential_zdiag.c.
References pastix_data_s::iparm, IPARM_SCHUR_SOLV_MODE, and pastix_int_t.
void sopalin_zdiag | ( | pastix_data_t * | pastix_data, |
sopalin_data_t * | sopalin_data, | ||
pastix_rhs_t | rhsb | ||
) |
Apply the diagonal solve.
[in] | pastix_data | The pastix_data structure. |
[in] | sopalin_data | The SolverMatrix structure from PaStiX. |
[in] | rhsb | The pointer to the rhs data structure that holds the vectors of the right hand side. |
Definition at line 315 of file sequential_zdiag.c.
References pastix_data_s::iparm, and IPARM_SCHEDULER.
Referenced by pastix_subtask_diag().