11#ifndef TLAPACK_LEGACY_MATRIX_HH
12#define TLAPACK_LEGACY_MATRIX_HH
30 class idx_t = std::size_t,
31 Layout L = Layout::ColMajor,
32 std::enable_if_t<(L == Layout::RowMajor) || (L == Layout::ColMajor),
39 static constexpr Layout layout = L;
41 constexpr const T& operator()(idx_t i, idx_t j)
const noexcept
51 constexpr T& operator()(idx_t i, idx_t j)
noexcept
57 return (layout == Layout::ColMajor) ?
ptr[i + j *
ldim]
constexpr Layout layout
Layout of a matrix or vector.
Definition arrayTraits.hpp:232
Layout
Definition types.hpp:24
@ ColMajor
Column-major layout.
#define tlapack_check(cond)
Throw an error if cond is false.
Definition exceptionHandling.hpp:98
Concept for matrices that can be converted to a legacy matrix.
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
Legacy matrix.
Definition LegacyMatrix.hpp:34
idx_t n
Sizes.
Definition LegacyMatrix.hpp:35
T * ptr
Pointer to array in memory.
Definition LegacyMatrix.hpp:36
idx_t ldim
Leading dimension.
Definition LegacyMatrix.hpp:37