TRIQS/nda 1.3.0
Multi-dimensional array library for C++
Loading...
Searching...
No Matches
orgqr.hpp
Go to the documentation of this file.
1// Copyright (c) 2024 Simons Foundation
2//
3// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at
6//
7// http://www.apache.org/licenses/LICENSE-2.0.txt
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
14//
15// Authors: Jason Kaye, Olivier Parcollet, Nils Wentzell
16
22#pragma once
23
25#include "../concepts.hpp"
26#include "../declarations.hpp"
27#include "../exceptions.hpp"
29#include "../macros.hpp"
31#include "../mem/policies.hpp"
32#include "../traits.hpp"
33
34#include <cmath>
35#include <complex>
36#include <type_traits>
37
38namespace nda::lapack {
39
60 template <MemoryMatrix A, MemoryVector TAU>
61 requires(mem::on_host<A> and std::is_same_v<double, get_value_t<A>> and have_same_value_type_v<A, TAU>
63 int orgqr(A &&a, TAU &&tau) { // NOLINT (temporary views are allowed here)
64 static_assert(has_F_layout<A>, "Error in nda::lapack::orgqr: C order is not supported");
65 static_assert(mem::have_host_compatible_addr_space<A, TAU>, "Error in nda::lapack::orgqr: Only CPU is supported");
66
67 // must be lapack compatible
68 EXPECTS(a.indexmap().min_stride() == 1);
69 EXPECTS(tau.indexmap().min_stride() == 1);
70
71 // first call to get the optimal buffersize
72 using value_type = get_value_t<A>;
73 value_type bufferSize_T{};
74 auto [m, n] = a.shape();
75 auto k = tau.size();
76 int info = 0;
77 lapack::f77::orgqr(m, std::min(m, n), k, a.data(), get_ld(a), tau.data(), &bufferSize_T, -1, info);
78 int bufferSize = static_cast<int>(std::ceil(std::real(bufferSize_T)));
79
80 // allocate work buffer and perform actual library call
82 lapack::f77::orgqr(m, std::min(m, n), k, a.data(), get_ld(a), tau.data(), work.data(), bufferSize, info);
83
84 if (info) NDA_RUNTIME_ERROR << "Error in nda::lapack::orgqr: info = " << info;
85 return info;
86 }
87
88} // namespace nda::lapack
Provides definitions and type traits involving the different memory address spaces supported by nda.
A generic multi-dimensional array.
ValueType const * data() const noexcept
Get a pointer to the actual data (in general this is not the beginning of the memory block for a view...
Provides concepts for the nda library.
Provides various convenient aliases and helper functions for nda::basic_array and nda::basic_array_vi...
Provides a custom runtime error class and macros to assert conditions and throw exceptions.
constexpr bool have_same_value_type_v
Constexpr variable that is true if all types in As have the same value type as A0.
Definition traits.hpp:196
std::decay_t< decltype(get_first_element(std::declval< A const >()))> get_value_t
Get the value type of an array/view or a scalar type.
Definition traits.hpp:192
int orgqr(A &&a, TAU &&tau)
Interface to the LAPACK orgqr routine.
Definition orgqr.hpp:63
static constexpr bool have_host_compatible_addr_space
Constexpr variable that is true if all given types have an address space compatible with Host.
static constexpr bool have_compatible_addr_space
Constexpr variable that is true if all given types have compatible address spaces.
static constexpr bool on_host
Constexpr variable that is true if all given types have a Host address space.
Provides a C++ interface for various LAPACK routines.
Provides definitions of various layout policies.
Macros used in the nda library.
Defines various memory handling policies.
Provides type traits for the nda library.