PaStiX Handbook  6.3.2
core_dlrmm.c File Reference
#include "common.h"
#include "kernels_trace.h"
#include "pastix_dlrcores.h"

Go to the source code of this file.

Functions

static pastix_fixdbl_t core_dlrmm_Cfr (core_dlrmm_t *params)
 Compute the matrix matrix product when applied to a full rank matrix. More...
 
static pastix_fixdbl_t core_dlrmm_Cnull (core_dlrmm_t *params)
 Compute the matrix matrix product when applied to a null matrix. More...
 
static pastix_fixdbl_t core_dlrmm_Clr (core_dlrmm_t *params)
 Compute the matrix matrix product when applied to a low rank matrix. More...
 
pastix_fixdbl_t core_dlrmm (core_dlrmm_t *params)
 Compute the matrix matrix product when involved matrices are stored in a low-rank structure. More...
 

Detailed Description

PaStiX low-rank kernel routines to compute a matrix matrix product in either form low or full rank.

Version
6.3.2
Author
Mathieu Faverge
Gregoire Pichon
Pierre Ramet
Date
2023-07-21
Generated arithmetic file
from /builds/solverstack/pastix/kernels/core_zlrmm.c, normal z -> d, Wed Dec 13 12:09:14 2023

Definition in file core_dlrmm.c.

Function Documentation

◆ core_dlrmm_Cfr()

static pastix_fixdbl_t core_dlrmm_Cfr ( core_dlrmm_t params)
inlinestatic

Compute the matrix matrix product when applied to a full rank matrix.

This function considers that the C matrix is full rank, and A and B are either full-rank or low-rank. The result of the product is directly applied to the C matrix.

Parameters
[in,out]paramsThe LRMM structure that stores all the parameters used in the LRMM functions family.
See also
core_dlrmm_t
Returns
The number of flops required to perform the operation.

Definition at line 45 of file core_dlrmm.c.

References core_dlrmm_s::A, core_dlrmm_s::B, core_dlrmm_s::C, PastixNoTrans, pastix_lrblock_s::rk, pastix_lrblock_s::rkmax, core_dlrmm_s::transA, and core_dlrmm_s::transB.

Referenced by core_dlrmm().

◆ core_dlrmm_Cnull()

static pastix_fixdbl_t core_dlrmm_Cnull ( core_dlrmm_t params)
inlinestatic

Compute the matrix matrix product when applied to a null matrix.

This function considers that the C matrix is null, and A and B are either full-rank or low-rank. The result of the product is directly applied to the C matrix.

Parameters
[in,out]paramsThe LRMM structure that stores all the parameters used in the LRMM functions family.
See also
core_dlrmm_t
Returns
The number of flops required to perform the operation.

Definition at line 109 of file core_dlrmm.c.

References PASTE_CORE_DLRMM_PARAMS, and PastixNoTrans.

Referenced by core_dlrmm().

◆ core_dlrmm_Clr()

static pastix_fixdbl_t core_dlrmm_Clr ( core_dlrmm_t params)
inlinestatic

Compute the matrix matrix product when applied to a low rank matrix.

This function considers that the C matrix is low rank, and A and B are either full-rank or low-rank. The result of the product is directly applied to the C matrix.

Parameters
[in,out]paramsThe LRMM structure that stores all the parameters used in the LRMM functions family.
See also
core_dlrmm_t
Returns
The number of flops required to perform the operation.

Definition at line 195 of file core_dlrmm.c.

References PASTE_CORE_DLRMM_PARAMS, and PastixNoTrans.

Referenced by core_dlrmm().