PaStiX Handbook
6.4.0
|
#include "common.h"
#include "cblas.h"
#include "blend/solver.h"
#include "kernels_trace.h"
#include "pastix_dcores.h"
#include "pastix_dlrcores.h"
Go to the source code of this file.
Functions | |
static void | core_dtrsmsp_1d (pastix_side_t side, pastix_uplo_t uplo, pastix_trans_t trans, pastix_diag_t diag, const SolverCblk *cblk, const double *A, double *C) |
Apply all the trsm updates on a panel stored in 1D layout. More... | |
static void | core_dtrsmsp_2d (pastix_side_t side, pastix_uplo_t uplo, pastix_trans_t trans, pastix_diag_t diag, const SolverCblk *cblk, const double *A, double *C) |
Compute the updates associated to one off-diagonal block between two cblk stored in 2D. More... | |
static pastix_fixdbl_t | core_dtrsmsp_lr (pastix_side_t side, pastix_uplo_t uplo, pastix_trans_t trans, pastix_diag_t diag, const SolverCblk *cblk, const pastix_lrblock_t *lrA, pastix_lrblock_t *lrC, const pastix_lr_t *lowrank) |
Computes the updates associated to one off-diagonal block between two cblk stored in low-rank format. More... | |
void | cpucblk_dtrsmsp (pastix_side_t side, pastix_uplo_t uplo, pastix_trans_t trans, pastix_diag_t diag, const SolverCblk *cblk, const void *A, void *C, const pastix_lr_t *lowrank) |
Compute the updates associated to a column of off-diagonal blocks. More... | |
static pastix_fixdbl_t | core_dtrsmsp_2dsub (pastix_side_t side, pastix_uplo_t uplo, pastix_trans_t trans, pastix_diag_t diag, const SolverCblk *cblk, pastix_int_t blok_m, const double *A, double *C) |
Compute the updates associated to one off-diagonal block between two cblk stored in 2D. More... | |
static pastix_fixdbl_t | core_dtrsmsp_lrsub (pastix_side_t side, pastix_uplo_t uplo, pastix_trans_t trans, pastix_diag_t diag, const SolverCblk *cblk, pastix_int_t blok_m, const pastix_lrblock_t *lrA, pastix_lrblock_t *lrC, const pastix_lr_t *lowrank) |
Compute the updates associated to one off-diagonal block between two cblk stored in low-rank format. More... | |
pastix_fixdbl_t | cpublok_dtrsmsp (pastix_side_t side, pastix_uplo_t uplo, pastix_trans_t trans, pastix_diag_t diag, const SolverCblk *cblk, pastix_int_t blok_m, const void *A, void *C, const pastix_lr_t *lowrank) |
Compute the updates associated to one off-diagonal block. More... | |
PaStiX kernel routines
Definition in file core_dtrsmsp.c.