12#ifndef TLAPACK_UNMHR_HH
13#define TLAPACK_UNMHR_HH
50template <
class T, TLAPACK_SMATRIX matrix_t, TLAPACK_SVECTOR vector_t>
64 auto&&
C_s = (
side == Side::Left)
137template <TLAPACK_SMATRIX matrix_t, TLAPACK_SVECTOR vector_t>
153 std::vector<T>
work_;
Side
Definition types.hpp:271
constexpr internal::Forward FORWARD
Forward direction.
Definition types.hpp:381
Op
Definition types.hpp:227
constexpr internal::ColumnwiseStorage COLUMNWISE_STORAGE
Columnwise storage.
Definition types.hpp:414
#define TLAPACK_SVECTOR
Macro for tlapack::concepts::SliceableVector compatible with C++17.
Definition concepts.hpp:909
#define TLAPACK_SMATRIX
Macro for tlapack::concepts::SliceableMatrix compatible with C++17.
Definition concepts.hpp:899
#define TLAPACK_WORKSPACE
Macro for tlapack::concepts::Workspace compatible with C++17.
Definition concepts.hpp:912
int unmhr(Side side, Op trans, size_type< matrix_t > ilo, size_type< matrix_t > ihi, const matrix_t &A, const vector_t &tau, matrix_t &C)
Applies unitary matrix Q to a matrix C.
Definition unmhr.hpp:138
int unmq_level2_work(side_t side, trans_t trans, direction_t direction, storage_t storeMode, const matrixV_t &V, const vector_t &tau, matrixC_t &C, work_t &work)
Applies unitary matrix Q to a matrix C. Workspace is provided as an argument.
Definition unmq_level2.hpp:109
int unmhr_work(Side side, Op trans, size_type< matrix_t > ilo, size_type< matrix_t > ihi, const matrix_t &A, const vector_t &tau, matrix_t &C, work_t &work)
Applies unitary matrix Q to a matrix C. Workspace is provided as an argument.
Definition unmhr.hpp:83
constexpr WorkInfo unmhr_worksize(Side side, Op trans, size_type< matrix_t > ilo, size_type< matrix_t > ihi, const matrix_t &A, const vector_t &tau, const matrix_t &C)
Worspace query of unmhr()
Definition unmhr.hpp:51
typename traits::real_type_traits< Types..., int >::type real_type
The common real type of the list of types.
Definition scalar_type_traits.hpp:113
Output information in the workspace query.
Definition workspace.hpp:16