lin
qr.hpp
Go to the documentation of this file.
1 
5 // TODO : Documentation for this entire fil
6 
7 #ifndef LIN_FACTORIZATIONS_QR_HPP_
8 #define LIN_FACTORIZATIONS_QR_HPP_
9 
10 #include "../core.hpp"
11 #include "../generators/constants.hpp"
12 #include "../references.hpp"
13 
14 #include <type_traits>
15 
16 namespace lin {
17 namespace internal {
18 
22 template <class C, class D, class E>
24  have_same_elements<C, D, E>,
25  is_tall<C>,
26  is_square<E>,
27  can_multiply<D, E>,
28  have_same_dimensions<C, D>
29  > { };
30 
31 } // namespace internal
32 
34 template <class C, class D, class E, std::enable_if_t<internal::can_qr<C, D, E>::value, size_t> = 0>
35 constexpr int qr(internal::Stream<C> const &M, internal::Mapping<D> &Q, internal::Mapping<E> &R);
36 
38 template <class C, class D, class E, std::enable_if_t<internal::can_qr<C, D, E>::value, size_t> = 0>
39 constexpr int qr(internal::Stream<C> const &M, internal::Base<D> &Q, internal::Base<E> &R);
40 
41 } // namespace lin
42 
43 #include "inl/qr.inl"
44 
45 #endif
Value backed tensor interface with resizing support.
Definition: base.hpp:40
Tensor interface providing read and write access to elements.
Definition: mapping.hpp:39
Definition: qr.hpp:23
Logical AND operation for template metaprogramming.
Definition: utilities.hpp:54
Definition: config.hpp:27