|
MyraMath
|
Thread parallel version of dense/syrk.h, symmetric rank-k updates. More...
#include <myramath/MYRAMATH_EXPORT.h>#include <myramath/utility/Number.h>#include <myramath/jobgraph/JobGraph.h>#include <myramath/pdense/Options.h>Go to the source code of this file.
Classes | |
| class | myra::Matrix< Number > |
| Tabulates an IxJ matrix. Allows random access, has column major layout to be compatible with BLAS/LAPACK. More... | |
| class | myra::MatrixRange< Number > |
| Represents a mutable MatrixRange. More... | |
| class | myra::CMatrixRange< Number > |
| Represents a const MatrixRange. More... | |
| class | myra::LowerMatrix< Number > |
| Stores a lower triangular matrix in rectangular packed format. More... | |
| class | myra::LowerMatrixRange< Number > |
| Represents a mutable LowerMatrixRange. More... | |
Functions | |
| void | myra::psyrk_inplace (const MatrixRange< NumberS > &C, char uplo, const CMatrixRange< NumberS > &A, char op='N', NumberS alpha=1, NumberS beta=0, pdense::Options options=pdense::Options::create()) |
| Updates C = beta*C + alpha*op(A)*op(A)', touching only the specified triangle of C. | |
| void | myra::psyrk_inplace (const MatrixRange< NumberD > &C, char uplo, const CMatrixRange< NumberD > &A, char op, NumberD alpha, NumberD beta, pdense::Options options) |
| Updates C = beta*C + alpha*op(A)*op(A)', touching only the specified triangle of C. | |
| void | myra::psyrk_inplace (const MatrixRange< NumberC > &C, char uplo, const CMatrixRange< NumberC > &A, char op, NumberC alpha, NumberC beta, pdense::Options options) |
| Updates C = beta*C + alpha*op(A)*op(A)', touching only the specified triangle of C. | |
| void | myra::psyrk_inplace (const MatrixRange< NumberZ > &C, char uplo, const CMatrixRange< NumberZ > &A, char op, NumberZ alpha, NumberZ beta, pdense::Options options) |
| Updates C = beta*C + alpha*op(A)*op(A)', touching only the specified triangle of C. | |
| void | myra::psyrk_inplace (const LowerMatrixRange< NumberS > &C, const CMatrixRange< NumberS > &A, char op='N', NumberS alpha=1, NumberS beta=0, pdense::Options options=pdense::Options::create()) |
| Updates C = beta*C + alpha*op(A)*op(A)'. | |
| void | myra::psyrk_inplace (const LowerMatrixRange< NumberD > &C, const CMatrixRange< NumberD > &A, char op, NumberD alpha, NumberD beta, pdense::Options options) |
| Updates C = beta*C + alpha*op(A)*op(A)'. | |
| void | myra::psyrk_inplace (const LowerMatrixRange< NumberC > &C, const CMatrixRange< NumberC > &A, char op, NumberC alpha, NumberC beta, pdense::Options options) |
| Updates C = beta*C + alpha*op(A)*op(A)'. | |
| void | myra::psyrk_inplace (const LowerMatrixRange< NumberZ > &C, const CMatrixRange< NumberZ > &A, char op, NumberZ alpha, NumberZ beta, pdense::Options options) |
| Updates C = beta*C + alpha*op(A)*op(A)'. | |
| LowerMatrix< NumberS > | myra::psyrk (const CMatrixRange< NumberS > &A, char op='N', NumberS alpha=1, pdense::Options options=pdense::Options::create()) |
| Returns alpha*op(A)*op(A)', alpha is defaulted to 1. | |
| LowerMatrix< NumberD > | myra::psyrk (const CMatrixRange< NumberD > &A, char op, NumberD alpha, pdense::Options options) |
| Returns alpha*op(A)*op(A)', alpha is defaulted to 1. | |
| LowerMatrix< NumberC > | myra::psyrk (const CMatrixRange< NumberC > &A, char op, NumberC alpha, pdense::Options options) |
| Returns alpha*op(A)*op(A)', alpha is defaulted to 1. | |
| LowerMatrix< NumberZ > | myra::psyrk (const CMatrixRange< NumberZ > &A, char op, NumberZ alpha, pdense::Options options) |
| Returns alpha*op(A)*op(A)', alpha is defaulted to 1. | |
| JobGraph | myra::psyrk_jobgraph (const MatrixRange< NumberS > &C, char uplo, const CMatrixRange< NumberS > &A, char op='N', NumberS alpha=1, NumberS beta=0, pdense::Options options=pdense::Options::create()) |
| Returns a JobGraph that fulfills psyrk_inplace(MatrixRange) | |
| JobGraph | myra::psyrk_jobgraph (const MatrixRange< NumberD > &C, char uplo, const CMatrixRange< NumberD > &A, char op, NumberD alpha, NumberD beta, pdense::Options options) |
| Returns a JobGraph that fulfills psyrk_inplace(MatrixRange) | |
| JobGraph | myra::psyrk_jobgraph (const MatrixRange< NumberC > &C, char uplo, const CMatrixRange< NumberC > &A, char op, NumberC alpha, NumberC beta, pdense::Options options) |
| Returns a JobGraph that fulfills psyrk_inplace(MatrixRange) | |
| JobGraph | myra::psyrk_jobgraph (const MatrixRange< NumberZ > &C, char uplo, const CMatrixRange< NumberZ > &A, char op, NumberZ alpha, NumberZ beta, pdense::Options options) |
| Returns a JobGraph that fulfills psyrk_inplace(MatrixRange) | |
| JobGraph | myra::psyrk_jobgraph (const LowerMatrixRange< NumberS > &C, const CMatrixRange< NumberS > &A, char op='N', NumberS alpha=1, NumberS beta=0, pdense::Options options=pdense::Options::create()) |
| Returns a JobGraph that fulfills psyrk_inplace(LowerMatrixRange) | |
| JobGraph | myra::psyrk_jobgraph (const LowerMatrixRange< NumberD > &C, const CMatrixRange< NumberD > &A, char op, NumberD alpha, NumberD beta, pdense::Options options) |
| Returns a JobGraph that fulfills psyrk_inplace(LowerMatrixRange) | |
| JobGraph | myra::psyrk_jobgraph (const LowerMatrixRange< NumberC > &C, const CMatrixRange< NumberC > &A, char op, NumberC alpha, NumberC beta, pdense::Options options) |
| Returns a JobGraph that fulfills psyrk_inplace(LowerMatrixRange) | |
| JobGraph | myra::psyrk_jobgraph (const LowerMatrixRange< NumberZ > &C, const CMatrixRange< NumberZ > &A, char op, NumberZ alpha, NumberZ beta, pdense::Options options) |
| Returns a JobGraph that fulfills psyrk_inplace(LowerMatrixRange) | |
Thread parallel version of dense/syrk.h, symmetric rank-k updates.
1.8.13