<T>LAPACK 0.1.1
C++ Template Linear Algebra PACKage
|
Matrix-matrix operations that perform \(O(n^3)\) work on \(O(n^2)\) data. More...
Matrix-matrix operations that perform \(O(n^3)\) work on \(O(n^2)\) data.
These benefit from cache reuse, since many operations can be performed for every read from main memory.
void tlapack::gemm | ( | Op | transA, |
Op | transB, | ||
const alpha_t & | alpha, | ||
const matrixA_t & | A, | ||
const matrixB_t & | B, | ||
const beta_t & | beta, | ||
matrixC_t & | C | ||
) |
General matrix-matrix multiply:
\[ C := \alpha op(A) \times op(B) + \beta C, \]
where \(op(X)\) is one of \(op(X) = X\), \(op(X) = X^T\), or \(op(X) = X^H\), alpha and beta are scalars, and A, B, and C are matrices, with \(op(A)\) an m-by-k matrix, \(op(B)\) a k-by-n matrix, and C an m-by-n matrix.
[in] | transA | The operation \(op(A)\) to be used:
|
[in] | transB | The operation \(op(B)\) to be used:
|
[in] | alpha | Scalar. |
[in] | A | \(op(A)\) is an m-by-k matrix. |
[in] | B | \(op(B)\) is an k-by-n matrix. |
[in] | beta | Scalar. |
[in,out] | C | A m-by-n matrix. |
void tlapack::gemm | ( | Op | transA, |
Op | transB, | ||
const alpha_t & | alpha, | ||
const matrixA_t & | A, | ||
const matrixB_t & | B, | ||
matrixC_t & | C | ||
) |
General matrix-matrix multiply:
\[ C := \alpha op(A) \times op(B), \]
where \(op(X)\) is one of \(op(X) = X\), \(op(X) = X^T\), or \(op(X) = X^H\), alpha and beta are scalars, and A, B, and C are matrices, with \(op(A)\) an m-by-k matrix, \(op(B)\) a k-by-n matrix, and C an m-by-n matrix.
[in] | transA | The operation \(op(A)\) to be used:
|
[in] | transB | The operation \(op(B)\) to be used:
|
[in] | alpha | Scalar. |
[in] | A | \(op(A)\) is an m-by-k matrix. |
[in] | B | \(op(B)\) is an k-by-n matrix. |
[out] | C | A m-by-n matrix. |
void tlapack::hemm | ( | Side | side, |
Uplo | uplo, | ||
const alpha_t & | alpha, | ||
const matrixA_t & | A, | ||
const matrixB_t & | B, | ||
const beta_t & | beta, | ||
matrixC_t & | C | ||
) |
Hermitian matrix-matrix multiply:
\[ C := \alpha A B + \beta C, \]
or
\[ C := \alpha B A + \beta C, \]
where alpha and beta are scalars, A is an m-by-m or n-by-n Hermitian matrix, and B and C are m-by-n matrices.
[in] | side | The side the matrix A appears on:
|
[in] | uplo | What part of the matrix A is referenced:
|
[in] | alpha | Scalar. |
[in] | A |
|
[in] | B | A m-by-n matrix. |
[in] | beta | Scalar. |
[in,out] | C | A m-by-n matrix. |
void tlapack::hemm | ( | Side | side, |
Uplo | uplo, | ||
const alpha_t & | alpha, | ||
const matrixA_t & | A, | ||
const matrixB_t & | B, | ||
matrixC_t & | C | ||
) |
Hermitian matrix-matrix multiply:
\[ C := \alpha A B, \]
or
\[ C := \alpha B A, \]
where alpha and beta are scalars, A is an m-by-m or n-by-n Hermitian matrix, and B and C are m-by-n matrices.
[in] | side | The side the matrix A appears on:
|
[in] | uplo | What part of the matrix A is referenced:
|
[in] | alpha | Scalar. |
[in] | A |
|
[in] | B | A m-by-n matrix. |
[out] | C | A m-by-n matrix. |
void tlapack::her2k | ( | Uplo | uplo, |
Op | trans, | ||
const alpha_t & | alpha, | ||
const matrixA_t & | A, | ||
const matrixB_t & | B, | ||
const beta_t & | beta, | ||
matrixC_t & | C | ||
) |
Hermitian rank-k update:
\[ C := \alpha A B^H + conj(\alpha) B A^H + \beta C, \]
or
\[ C := \alpha A^H B + conj(\alpha) B^H A + \beta C, \]
where alpha and beta are scalars, C is an n-by-n Hermitian matrix, and A and B are n-by-k or k-by-n matrices.
Mind that if beta is complex, the output matrix C is no longer Hermitian.
[in] | uplo | What part of the matrix C is referenced, the opposite triangle being assumed from symmetry:
|
[in] | trans | The operation to be performed:
|
[in] | alpha | Real scalar. |
[in] | A | A n-by-k matrix.
|
[in] | B | A n-by-k matrix.
|
[in] | beta | Real scalar. |
[in,out] | C | A n-by-n Hermitian matrix. Imaginary parts of the diagonal elements need not be set, are assumed to be zero on entry, and are set to zero on exit. |
void tlapack::her2k | ( | Uplo | uplo, |
Op | trans, | ||
const alpha_t & | alpha, | ||
const matrixA_t & | A, | ||
const matrixB_t & | B, | ||
matrixC_t & | C | ||
) |
Hermitian rank-k update:
\[ C := \alpha A B^H + conj(\alpha) B A^H, \]
or
\[ C := \alpha A^H B + conj(\alpha) B^H A, \]
where alpha and beta are scalars, C is an n-by-n Hermitian matrix, and A and B are n-by-k or k-by-n matrices.
Mind that if beta is complex, the output matrix C is no longer Hermitian.
[in] | uplo | What part of the matrix C is referenced, the opposite triangle being assumed from symmetry:
|
[in] | trans | The operation to be performed:
|
[in] | alpha | Real scalar. |
[in] | A | A n-by-k matrix.
|
[in] | B | A n-by-k matrix.
|
[out] | C | A n-by-n Hermitian matrix. |
void tlapack::herk | ( | Uplo | uplo, |
Op | trans, | ||
const alpha_t & | alpha, | ||
const matrixA_t & | A, | ||
const beta_t & | beta, | ||
matrixC_t & | C | ||
) |
Hermitian rank-k update:
\[ C := \alpha A A^H + \beta C, \]
or
\[ C := \alpha A^H A + \beta C, \]
where alpha and beta are real scalars, C is an n-by-n Hermitian matrix, and A is an n-by-k or k-by-n matrix.
Mind that if alpha or beta are complex, the output matrix C may no longer Hermitian.
[in] | uplo | What part of the matrix C is referenced, the opposite triangle being assumed from symmetry:
|
[in] | trans | The operation to be performed:
|
[in] | alpha | Real scalar. |
[in] | A | A n-by-k matrix.
|
[in] | beta | Real scalar. |
[in,out] | C | A n-by-n Hermitian matrix. Imaginary parts of the diagonal elements need not be set, are assumed to be zero on entry, and are set to zero on exit. |
void tlapack::herk | ( | Uplo | uplo, |
Op | trans, | ||
const alpha_t & | alpha, | ||
const matrixA_t & | A, | ||
matrixC_t & | C | ||
) |
Hermitian rank-k update:
\[ C := \alpha A A^H, \]
or
\[ C := \alpha A^H A, \]
where alpha and beta are real scalars, C is an n-by-n Hermitian matrix, and A is an n-by-k or k-by-n matrix.
Mind that if alpha or beta are complex, the output matrix C may no longer Hermitian.
[in] | uplo | What part of the matrix C is referenced, the opposite triangle being assumed from symmetry:
|
[in] | trans | The operation to be performed:
|
[in] | alpha | Real scalar. |
[in] | A | A n-by-k matrix.
|
[out] | C | A n-by-n Hermitian matrix. |
void tlapack::symm | ( | Side | side, |
Uplo | uplo, | ||
const alpha_t & | alpha, | ||
const matrixA_t & | A, | ||
const matrixB_t & | B, | ||
const beta_t & | beta, | ||
matrixC_t & | C | ||
) |
Symmetric matrix-matrix multiply:
\[ C := \alpha A B + \beta C, \]
or
\[ C := \alpha B A + \beta C, \]
where alpha and beta are scalars, A is an m-by-m or n-by-n symmetric matrix, and B and C are m-by-n matrices.
[in] | side | The side the matrix A appears on:
|
[in] | uplo | What part of the matrix A is referenced:
|
[in] | alpha | Scalar. |
[in] | A |
|
[in] | B | A m-by-n matrix. |
[in] | beta | Scalar. |
[in,out] | C | A m-by-n matrix. |
void tlapack::symm | ( | Side | side, |
Uplo | uplo, | ||
const alpha_t & | alpha, | ||
const matrixA_t & | A, | ||
const matrixB_t & | B, | ||
matrixC_t & | C | ||
) |
Symmetric matrix-matrix multiply:
\[ C := \alpha A B, \]
or
\[ C := \alpha B A, \]
where alpha and beta are scalars, A is an m-by-m or n-by-n symmetric matrix, and B and C are m-by-n matrices.
[in] | side | The side the matrix A appears on:
|
[in] | uplo | What part of the matrix A is referenced:
|
[in] | alpha | Scalar. |
[in] | A |
|
[in] | B | A m-by-n matrix. |
[out] | C | A m-by-n matrix. |
void tlapack::syr2k | ( | Uplo | uplo, |
Op | trans, | ||
const alpha_t & | alpha, | ||
const matrixA_t & | A, | ||
const matrixB_t & | B, | ||
const beta_t & | beta, | ||
matrixC_t & | C | ||
) |
Symmetric rank-k update:
\[ C := \alpha A B^T + \alpha B A^T + \beta C, \]
or
\[ C := \alpha A^T B + \alpha B^T A + \beta C, \]
where alpha and beta are scalars, C is an n-by-n symmetric matrix, and A and B are n-by-k or k-by-n matrices.
[in] | uplo | What part of the matrix C is referenced, the opposite triangle being assumed from symmetry:
|
[in] | trans | The operation to be performed:
|
[in] | alpha | Scalar. |
[in] | A | A n-by-k matrix.
|
[in] | B | A n-by-k matrix.
|
[in] | beta | Scalar. |
[in,out] | C | A n-by-n symmetric matrix. |
void tlapack::syr2k | ( | Uplo | uplo, |
Op | trans, | ||
const alpha_t & | alpha, | ||
const matrixA_t & | A, | ||
const matrixB_t & | B, | ||
matrixC_t & | C | ||
) |
Symmetric rank-k update:
\[ C := \alpha A B^T + \alpha B A^T, \]
or
\[ C := \alpha A^T B + \alpha B^T A, \]
where alpha and beta are scalars, C is an n-by-n symmetric matrix, and A and B are n-by-k or k-by-n matrices.
[in] | uplo | What part of the matrix C is referenced, the opposite triangle being assumed from symmetry:
|
[in] | trans | The operation to be performed:
|
[in] | alpha | Scalar. |
[in] | A | A n-by-k matrix.
|
[in] | B | A n-by-k matrix.
|
[out] | C | A n-by-n symmetric matrix. |
void tlapack::syrk | ( | Uplo | uplo, |
Op | trans, | ||
const alpha_t & | alpha, | ||
const matrixA_t & | A, | ||
const beta_t & | beta, | ||
matrixC_t & | C | ||
) |
Symmetric rank-k update:
\[ C := \alpha A A^T + \beta C, \]
or
\[ C := \alpha A^T A + \beta C, \]
where alpha and beta are scalars, C is an n-by-n symmetric matrix, and A is an n-by-k or k-by-n matrix.
[in] | uplo | What part of the matrix C is referenced, the opposite triangle being assumed from symmetry:
|
[in] | trans | The operation to be performed:
|
[in] | alpha | Scalar. |
[in] | A | A n-by-k matrix.
|
[in] | beta | Scalar. |
[in,out] | C | A n-by-n symmetric matrix. |
void tlapack::syrk | ( | Uplo | uplo, |
Op | trans, | ||
const alpha_t & | alpha, | ||
const matrixA_t & | A, | ||
matrixC_t & | C | ||
) |
Symmetric rank-k update:
\[ C := \alpha A A^T, \]
or
\[ C := \alpha A^T A, \]
where alpha and beta are scalars, C is an n-by-n symmetric matrix, and A is an n-by-k or k-by-n matrix.
[in] | uplo | What part of the matrix C is referenced, the opposite triangle being assumed from symmetry:
|
[in] | trans | The operation to be performed:
|
[in] | alpha | Scalar. |
[in] | A | A n-by-k matrix.
|
[out] | C | A n-by-n symmetric matrix. |
void tlapack::trmm | ( | Side | side, |
Uplo | uplo, | ||
Op | trans, | ||
Diag | diag, | ||
const alpha_t & | alpha, | ||
const matrixA_t & | A, | ||
matrixB_t & | B | ||
) |
Triangular matrix-matrix multiply:
\[ B := \alpha op(A) B, \]
or
\[ B := \alpha B op(A), \]
where \(op(A)\) is one of \(op(A) = A\), \(op(A) = A^T\), or \(op(A) = A^H\), B is an m-by-n matrix, and A is an m-by-m or n-by-n, unit or non-unit, upper or lower triangular matrix.
[in] | side | Whether \(op(A)\) is on the left or right of B:
|
[in] | uplo | What part of the matrix A is referenced, the opposite triangle being assumed to be zero:
|
[in] | trans | The form of \(op(A)\):
|
[in] | diag | Whether A has a unit or non-unit diagonal:
|
[in] | alpha | Scalar. |
[in] | A |
|
[in,out] | B | A m-by-n matrix. |
void tlapack::trmm_blocked_mixed | ( | side_t | side, |
uplo_t | uplo, | ||
op_t | trans, | ||
diag_t | diag, | ||
const scalar_type< type_t< matrixA_t >, type_t< matrixB_t > > & | alpha, | ||
const matrixA_t & | A, | ||
matrixB_t & | B, | ||
work_t & | work, | ||
const TrmmBlockedOpts & | opts = {} |
||
) |
Triangular matrix-matrix multiply using a blocked algorithm.
In iteration i, the algorithm computes \(B_{0i} += \alpha A_{0i,i} B_i\) and then \(B_i := \alpha A_{i,i} B_i\), where i is the block index. See details in the implementation. \(B_i\) is cast to the precision type of work
, enabling mixed precision.
[in] | side | Whether \(op(A)\) is on the left or right of B:
|
[in] | uplo | What part of the matrix A is referenced, the opposite triangle being assumed to be zero:
|
[in] | trans | The form of \(op(A)\):
|
[in] | diag | Whether A has a unit or non-unit diagonal:
|
[in] | alpha | Scalar. |
[in] | A |
|
[in,out] | B | A m-by-n matrix. |
work | nb-by-n workspace that also informs the precision type to case B. | |
[in] | opts | Options. |
void tlapack::trsm | ( | Side | side, |
Uplo | uplo, | ||
Op | trans, | ||
Diag | diag, | ||
const alpha_t & | alpha, | ||
const matrixA_t & | A, | ||
matrixB_t & | B | ||
) |
Solve the triangular matrix-vector equation.
\[ op(A) X = \alpha B, \]
or
\[ X op(A) = \alpha B, \]
where \(op(A)\) is one of \(op(A) = A\), \(op(A) = A^T\), or \(op(A) = A^H\), X and B are m-by-n matrices, and A is an m-by-m or n-by-n, unit or non-unit, upper or lower triangular matrix.
No test for singularity or near-singularity is included in this routine. Such tests must be performed before calling this routine.
[in] | side | Whether \(op(A)\) is on the left or right of X:
|
[in] | uplo | What part of the matrix A is referenced, the opposite triangle being assumed to be zero:
|
[in] | trans | The form of \(op(A)\):
|
[in] | diag | Whether A has a unit or non-unit diagonal:
|
[in] | alpha | Scalar. |
[in] | A |
|
[in,out] | B | On entry, the m-by-n matrix B. On exit, the m-by-n matrix X. |