Compile-time dispatch policy tags for the kernel module.
Dense row-major matrix templated over scalar type T.
void trsv_upper(const Matrix &U, const Vector &b, Vector &x)
Back substitution: solve Ux = b.
void trsv_lower(const Matrix &L, const Vector &b, Vector &x)
Forward substitution: solve Lx = b.
void ger(real alpha, const Vector &x, const Vector &y, Matrix &A, seq_t) noexcept
Sequential rank-1 update.
Parallel execution policy tag.
Sequential execution policy tag.
Dense vector storage and operations.