lsd_mkb/lsd_mkb_superlu/superlu_seq/smyblas2.c File Reference

Level 2 Blas operations. More...

Functions

void slsolve (int ldm, int ncol, float *M, float *rhs)
 Solves a dense UNIT lower triangular system.
void susolve (int ldm, int ncol, float *M, float *rhs)
 Solves a dense upper triangular system.
void smatvec (int ldm, int nrow, int ncol, float *M, float *vec, float *Mxvec)
 Performs a dense matrix-vector multiply: Mxvec = Mxvec + M * vec.

Detailed Description

Level 2 Blas operations.

 -- SuperLU routine (version 2.0) --
 Univ. of California Berkeley, Xerox Palo Alto Research Center,
 and Lawrence Berkeley National Lab.
 November 15, 1997
 

Purpose: Level 2 BLAS operations: solves and matvec, written in C. Note: This is only used when the system lacks an efficient BLAS library.


Function Documentation

void slsolve ( int  ldm,
int  ncol,
float *  M,
float *  rhs 
)

Solves a dense UNIT lower triangular system.

The unit lower triangular matrix is stored in a 2D array M(1:nrow,1:ncol). The solution will be returned in the rhs vector.

Here is the caller graph for this function:

void smatvec ( int  ldm,
int  nrow,
int  ncol,
float *  M,
float *  vec,
float *  Mxvec 
)

Performs a dense matrix-vector multiply: Mxvec = Mxvec + M * vec.

The input matrix is M(1:nrow,1:ncol); The product is returned in Mxvec[].

Here is the caller graph for this function:

void susolve ( int  ldm,
int  ncol,
float *  M,
float *  rhs 
)

Solves a dense upper triangular system.

The upper triangular matrix is stored in a 2-dim array M(1:ldm,1:ncol). The solution will be returned in the rhs vector.

Here is the caller graph for this function:

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines

Generated on 3 Jun 2020 for ModFEM by  doxygen 1.6.1