SenK
SenK is a C++ library for high-performance linear solvers.
senk::blas2 Namespace Reference

This namespace contains Level2 BLAS-style functions. More...

Functions

template<typename T >
void Trsv (T *U, T *b, T *x, int n, int m)
 Upper triangular solver. More...
 

Detailed Description

This namespace contains Level2 BLAS-style functions.

Function Documentation

◆ Trsv()

template<typename T >
void senk::blas2::Trsv ( T *  U,
T *  b,
T *  x,
int  n,
int  m 
)
inline

Upper triangular solver.

Template Parameters
TThe type of vectors.
Parameters
UA 2D-array of size n * m that represents an upper triangular matrix.
bA 1D-array of size m.
xA 1D-array of size m.
nThe number of rows of the matrix.
mThe number of columns of the matrix.

Definition at line 25 of file senk_blas2.hpp.