#include <Teuchos_BLAS.hpp>
Public Member Functions | |
BLAS (void) | |
BLAS (const BLAS< int, std::complex< float > > &) | |
virtual | ~BLAS (void) |
void | ROTG (std::complex< float > *da, std::complex< float > *db, float *c, std::complex< float > *s) const |
void | ROT (const int n, std::complex< float > *dx, const int incx, std::complex< float > *dy, const int incy, float *c, std::complex< float > *s) const |
float | ASUM (const int n, const std::complex< float > *x, const int incx) const |
void | AXPY (const int n, const std::complex< float > alpha, const std::complex< float > *x, const int incx, std::complex< float > *y, const int incy) const |
void | COPY (const int n, const std::complex< float > *x, const int incx, std::complex< float > *y, const int incy) const |
std::complex< float > | DOT (const int n, const std::complex< float > *x, const int incx, const std::complex< float > *y, const int incy) const |
float | NRM2 (const int n, const std::complex< float > *x, const int incx) const |
void | SCAL (const int n, const std::complex< float > alpha, std::complex< float > *x, const int incx) const |
int | IAMAX (const int n, const std::complex< float > *x, const int incx) const |
void | GEMV (ETransp trans, const int m, const int n, const std::complex< float > alpha, const std::complex< float > *A, const int lda, const std::complex< float > *x, const int incx, const std::complex< float > beta, std::complex< float > *y, const int incy) const |
void | TRMV (EUplo uplo, ETransp trans, EDiag diag, const int n, const std::complex< float > *A, const int lda, std::complex< float > *x, const int incx) const |
void | GER (const int m, const int n, const std::complex< float > alpha, const std::complex< float > *x, const int incx, const std::complex< float > *y, const int incy, std::complex< float > *A, const int lda) const |
void | GEMM (ETransp transa, ETransp transb, const int m, const int n, const int k, const std::complex< float > alpha, const std::complex< float > *A, const int lda, const std::complex< float > *B, const int ldb, const std::complex< float > beta, std::complex< float > *C, const int ldc) const |
void | SYMM (ESide side, EUplo uplo, const int m, const int n, const std::complex< float > alpha, const std::complex< float > *A, const int lda, const std::complex< float > *B, const int ldb, const std::complex< float > beta, std::complex< float > *C, const int ldc) const |
void | TRMM (ESide side, EUplo uplo, ETransp transa, EDiag diag, const int m, const int n, const std::complex< float > alpha, const std::complex< float > *A, const int lda, std::complex< float > *B, const int ldb) const |
void | TRSM (ESide side, EUplo uplo, ETransp transa, EDiag diag, const int m, const int n, const std::complex< float > alpha, const std::complex< float > *A, const int lda, std::complex< float > *B, const int ldb) const |
Definition at line 1551 of file Teuchos_BLAS.hpp.
Teuchos::BLAS< int, std::complex< float > >::BLAS | ( | void | ) | [inline] |
Definition at line 1554 of file Teuchos_BLAS.hpp.
Teuchos::BLAS< int, std::complex< float > >::BLAS | ( | const BLAS< int, std::complex< float > > & | ) | [inline] |
Definition at line 1555 of file Teuchos_BLAS.hpp.
virtual Teuchos::BLAS< int, std::complex< float > >::~BLAS | ( | void | ) | [inline, virtual] |
Definition at line 1556 of file Teuchos_BLAS.hpp.
float Teuchos::BLAS< int, std::complex< float > >::ASUM | ( | const int | n, | |
const std::complex< float > * | x, | |||
const int | incx | |||
) | const |
Definition at line 172 of file Teuchos_BLAS.cpp.
void Teuchos::BLAS< int, std::complex< float > >::AXPY | ( | const int | n, | |
const std::complex< float > | alpha, | |||
const std::complex< float > * | x, | |||
const int | incx, | |||
std::complex< float > * | y, | |||
const int | incy | |||
) | const |
Definition at line 175 of file Teuchos_BLAS.cpp.
void Teuchos::BLAS< int, std::complex< float > >::COPY | ( | const int | n, | |
const std::complex< float > * | x, | |||
const int | incx, | |||
std::complex< float > * | y, | |||
const int | incy | |||
) | const |
Definition at line 178 of file Teuchos_BLAS.cpp.
std::complex< float > Teuchos::BLAS< int, std::complex< float > >::DOT | ( | const int | n, | |
const std::complex< float > * | x, | |||
const int | incx, | |||
const std::complex< float > * | y, | |||
const int | incy | |||
) | const |
Definition at line 181 of file Teuchos_BLAS.cpp.
void Teuchos::BLAS< int, std::complex< float > >::GEMM | ( | ETransp | transa, | |
ETransp | transb, | |||
const int | m, | |||
const int | n, | |||
const int | k, | |||
const std::complex< float > | alpha, | |||
const std::complex< float > * | A, | |||
const int | lda, | |||
const std::complex< float > * | B, | |||
const int | ldb, | |||
const std::complex< float > | beta, | |||
std::complex< float > * | C, | |||
const int | ldc | |||
) | const |
Definition at line 210 of file Teuchos_BLAS.cpp.
void Teuchos::BLAS< int, std::complex< float > >::GEMV | ( | ETransp | trans, | |
const int | m, | |||
const int | n, | |||
const std::complex< float > | alpha, | |||
const std::complex< float > * | A, | |||
const int | lda, | |||
const std::complex< float > * | x, | |||
const int | incx, | |||
const std::complex< float > | beta, | |||
std::complex< float > * | y, | |||
const int | incy | |||
) | const |
Definition at line 201 of file Teuchos_BLAS.cpp.
void Teuchos::BLAS< int, std::complex< float > >::GER | ( | const int | m, | |
const int | n, | |||
const std::complex< float > | alpha, | |||
const std::complex< float > * | x, | |||
const int | incx, | |||
const std::complex< float > * | y, | |||
const int | incy, | |||
std::complex< float > * | A, | |||
const int | lda | |||
) | const |
Definition at line 204 of file Teuchos_BLAS.cpp.
int Teuchos::BLAS< int, std::complex< float > >::IAMAX | ( | const int | n, | |
const std::complex< float > * | x, | |||
const int | incx | |||
) | const |
Definition at line 192 of file Teuchos_BLAS.cpp.
float Teuchos::BLAS< int, std::complex< float > >::NRM2 | ( | const int | n, | |
const std::complex< float > * | x, | |||
const int | incx | |||
) | const |
Definition at line 195 of file Teuchos_BLAS.cpp.
void Teuchos::BLAS< int, std::complex< float > >::ROT | ( | const int | n, | |
std::complex< float > * | dx, | |||
const int | incx, | |||
std::complex< float > * | dy, | |||
const int | incy, | |||
float * | c, | |||
std::complex< float > * | s | |||
) | const |
Definition at line 169 of file Teuchos_BLAS.cpp.
void Teuchos::BLAS< int, std::complex< float > >::ROTG | ( | std::complex< float > * | da, | |
std::complex< float > * | db, | |||
float * | c, | |||
std::complex< float > * | s | |||
) | const |
Definition at line 166 of file Teuchos_BLAS.cpp.
void Teuchos::BLAS< int, std::complex< float > >::SCAL | ( | const int | n, | |
const std::complex< float > | alpha, | |||
std::complex< float > * | x, | |||
const int | incx | |||
) | const |
Definition at line 198 of file Teuchos_BLAS.cpp.
void Teuchos::BLAS< int, std::complex< float > >::SYMM | ( | ESide | side, | |
EUplo | uplo, | |||
const int | m, | |||
const int | n, | |||
const std::complex< float > | alpha, | |||
const std::complex< float > * | A, | |||
const int | lda, | |||
const std::complex< float > * | B, | |||
const int | ldb, | |||
const std::complex< float > | beta, | |||
std::complex< float > * | C, | |||
const int | ldc | |||
) | const |
Definition at line 213 of file Teuchos_BLAS.cpp.
void Teuchos::BLAS< int, std::complex< float > >::TRMM | ( | ESide | side, | |
EUplo | uplo, | |||
ETransp | transa, | |||
EDiag | diag, | |||
const int | m, | |||
const int | n, | |||
const std::complex< float > | alpha, | |||
const std::complex< float > * | A, | |||
const int | lda, | |||
std::complex< float > * | B, | |||
const int | ldb | |||
) | const |
Definition at line 216 of file Teuchos_BLAS.cpp.
void Teuchos::BLAS< int, std::complex< float > >::TRMV | ( | EUplo | uplo, | |
ETransp | trans, | |||
EDiag | diag, | |||
const int | n, | |||
const std::complex< float > * | A, | |||
const int | lda, | |||
std::complex< float > * | x, | |||
const int | incx | |||
) | const |
Definition at line 207 of file Teuchos_BLAS.cpp.
void Teuchos::BLAS< int, std::complex< float > >::TRSM | ( | ESide | side, | |
EUplo | uplo, | |||
ETransp | transa, | |||
EDiag | diag, | |||
const int | m, | |||
const int | n, | |||
const std::complex< float > | alpha, | |||
const std::complex< float > * | A, | |||
const int | lda, | |||
std::complex< float > * | B, | |||
const int | ldb | |||
) | const |
Definition at line 219 of file Teuchos_BLAS.cpp.