12#ifndef TLAPACK_UNM2L_HH
13#define TLAPACK_UNM2L_HH
61 const idx_t m = nrows(
C);
62 const idx_t n = ncols(
C);
63 const idx_t
nA = (
side == Side::Left) ? m : n;
126 const idx_t m = nrows(
C);
127 const idx_t n = ncols(
C);
128 const idx_t
k = size(
tau);
131 if ((m == 0) || (n == 0) || (
k == 0))
return 0;
135 std::vector<TA>
work_;
constexpr internal::Backward BACKWARD
Backward direction.
Definition types.hpp:383
constexpr internal::ColumnwiseStorage COLUMNWISE_STORAGE
Columnwise storage.
Definition types.hpp:414
#define TLAPACK_SIDE
Macro for tlapack::concepts::Side compatible with C++17.
Definition concepts.hpp:927
#define TLAPACK_SMATRIX
Macro for tlapack::concepts::SliceableMatrix compatible with C++17.
Definition concepts.hpp:899
#define TLAPACK_OP
Macro for tlapack::concepts::Op compatible with C++17.
Definition concepts.hpp:933
#define TLAPACK_VECTOR
Macro for tlapack::concepts::Vector compatible with C++17.
Definition concepts.hpp:906
int unm2l(side_t side, trans_t trans, const matrixA_t &A, const tau_t &tau, matrixC_t &C)
Applies unitary matrix Q from an QL factorization to a matrix C.
Definition unm2l.hpp:113
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
constexpr WorkInfo unm2l_worksize(side_t side, trans_t trans, const matrixA_t &A, const tau_t &tau, const matrixC_t &C)
Worspace query of unm2l()
Definition unm2l.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