<T>LAPACK 0.1.1
C++ Template Linear Algebra PACKage
Loading...
Searching...
No Matches
LegacyMatrix.hpp
Go to the documentation of this file.
1
4//
5// Copyright (c) 2021-2023, University of Colorado Denver. All rights reserved.
6//
7// This file is part of <T>LAPACK.
8// <T>LAPACK is free software: you can redistribute it and/or modify it under
9// the terms of the BSD 3-Clause license. See the accompanying LICENSE file.
10
11#ifndef TLAPACK_LEGACY_MATRIX_HH
12#define TLAPACK_LEGACY_MATRIX_HH
13
14#include <cassert>
15
18
19namespace tlapack {
20
29template <class T,
30 class idx_t = std::size_t,
31 Layout L = Layout::ColMajor,
32 std::enable_if_t<(L == Layout::RowMajor) || (L == Layout::ColMajor),
33 int> = 0>
35 idx_t m, n;
36 T* ptr;
37 idx_t ldim;
38
39 static constexpr Layout layout = L;
40
41 constexpr const T& operator()(idx_t i, idx_t j) const noexcept
42 {
43 assert(i >= 0);
44 assert(i < m);
45 assert(j >= 0);
46 assert(j < n);
47 return (layout == Layout::ColMajor) ? ptr[i + j * ldim]
48 : ptr[i * ldim + j];
49 }
50
51 constexpr T& operator()(idx_t i, idx_t j) noexcept
52 {
53 assert(i >= 0);
54 assert(i < m);
55 assert(j >= 0);
56 assert(j < n);
57 return (layout == Layout::ColMajor) ? ptr[i + j * ldim]
58 : ptr[i * ldim + j];
59 }
60
61 constexpr LegacyMatrix(idx_t m, idx_t n, T* ptr, idx_t ldim)
62 : m(m), n(n), ptr(ptr), ldim(ldim)
63 {
64 tlapack_check(m >= 0);
65 tlapack_check(n >= 0);
66 tlapack_check(ldim >= ((layout == Layout::ColMajor) ? m : n));
67 }
68
69 constexpr LegacyMatrix(idx_t m, idx_t n, T* ptr)
70 : m(m), n(n), ptr(ptr), ldim((layout == Layout::ColMajor) ? m : n)
71 {
72 tlapack_check(m >= 0);
73 tlapack_check(n >= 0);
74 }
75};
76
77} // namespace tlapack
78
79#endif // TLAPACK_LEGACY_MATRIX_HH
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