PaStiX Handbook
6.4.0
|
#include "common.h"
#include "blend/solver.h"
#include "bcsc/bcsc.h"
#include "bcsc/bcsc_z.h"
#include "sopalin/sopalin_data.h"
#include "pastix_zcores.h"
Go to the source code of this file.
Functions | |
void | sequential_ztrsm (pastix_data_t *pastix_data, const args_solve_t *enums, sopalin_data_t *sopalin_data, pastix_rhs_t rhsb) |
Applies the Sequential Forward or Backward solve. More... | |
void | thread_ztrsm_static (isched_thread_t *ctx, void *args) |
Applies the Static Forward or Backward solve. More... | |
void | static_ztrsm (pastix_data_t *pastix_data, const args_solve_t *enums, sopalin_data_t *sopalin_data, pastix_rhs_t rhsb) |
Applies the Static Forward or Backward solve. More... | |
void | thread_ztrsm_dynamic (isched_thread_t *ctx, void *args) |
Applies the Dynamic Forward or Backward solve. More... | |
void | dynamic_ztrsm (pastix_data_t *pastix_data, const args_solve_t *enums, sopalin_data_t *sopalin_data, pastix_rhs_t rhsb) |
Applies the Dynamic Forward or Backward solve. More... | |
void | sopalin_ztrsm (pastix_data_t *pastix_data, pastix_side_t side, pastix_uplo_t uplo, pastix_trans_t trans, pastix_diag_t diag, sopalin_data_t *sopalin_data, pastix_rhs_t rhsb) |
Calls the sequential, static, dynamic or runtime solve according to scheduler. More... | |
Definition in file sequential_ztrsm.c.
void sequential_ztrsm | ( | pastix_data_t * | pastix_data, |
const args_solve_t * | enums, | ||
sopalin_data_t * | sopalin_data, | ||
pastix_rhs_t | rhsb | ||
) |
Applies the Sequential Forward or Backward solve.
[in] | pastix_data | The pastix_data structure. |
[in] | enums | Enums needed for the solve. |
[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 70 of file sequential_ztrsm.c.
References pastix_int_t.
void thread_ztrsm_static | ( | isched_thread_t * | ctx, |
void * | args | ||
) |
Applies the Static Forward or Backward solve.
[in] | ctx | Thread structure of the execution context of one instance of the scheduler. |
[in] | args | Arguments for the Static solve. |
Definition at line 149 of file sequential_ztrsm.c.
References solver_matrix_s::cblknbr, and pastix_int_t.
Referenced by static_ztrsm().
void static_ztrsm | ( | pastix_data_t * | pastix_data, |
const args_solve_t * | enums, | ||
sopalin_data_t * | sopalin_data, | ||
pastix_rhs_t | rhsb | ||
) |
Applies the Static Forward or Backward solve.
[in] | pastix_data | The pastix_data structure. |
[in] | enums | Enums needed for the solve. |
[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 255 of file sequential_ztrsm.c.
References pastix_data_s::isched, and thread_ztrsm_static().
void thread_ztrsm_dynamic | ( | isched_thread_t * | ctx, |
void * | args | ||
) |
Applies the Dynamic Forward or Backward solve.
[in] | ctx | Thread structure of the execution context of one instance of the scheduler. |
[in] | args | Arguments for the Static solve. |
Definition at line 280 of file sequential_ztrsm.c.
References solver_matrix_s::cblknbr, pastix_int_t, and pqueueInit().
void dynamic_ztrsm | ( | pastix_data_t * | pastix_data, |
const args_solve_t * | enums, | ||
sopalin_data_t * | sopalin_data, | ||
pastix_rhs_t | rhsb | ||
) |
Applies the Dynamic Forward or Backward solve.
[in] | pastix_data | The pastix_data structure. |
[in] | enums | Enums needed for the solve. |
[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 445 of file sequential_ztrsm.c.
References solver_matrix_s::cblknbr, and solver_matrix_s::cblkschur.
void sopalin_ztrsm | ( | pastix_data_t * | pastix_data, |
pastix_side_t | side, | ||
pastix_uplo_t | uplo, | ||
pastix_trans_t | trans, | ||
pastix_diag_t | diag, | ||
sopalin_data_t * | sopalin_data, | ||
pastix_rhs_t | rhsb | ||
) |
Calls the sequential, static, dynamic or runtime solve according to scheduler.
[in] | pastix_data | The pastix_data structure. |
[in] | side | Specify whether the off-diagonal blocks appear on the left or right in the equation. It has to be either PastixLeft or PastixRight. |
[in] | uplo | Specify whether the off-diagonal blocks are upper or lower triangular. It has to be either PastixUpper or PastixLower. |
[in] | trans | Specify the transposition used for the off-diagonal blocks. It has to be either PastixTrans or PastixConjTrans. |
[in] | diag | Specify if the off-diagonal blocks are unit triangular. It has to be either PastixUnit or PastixNonUnit. |
[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 591 of file sequential_ztrsm.c.
References pastix_data_s::iparm, and IPARM_SCHEDULER.
Referenced by pastix_subtask_trsm().