TRIQS/nda
2.0.0
Multi-dimensional array library for C++
Toggle main menu visibility
Loading...
Searching...
No Matches
ungqr.hpp
Go to the documentation of this file.
1
// Copyright (c) 2024--present, The Simons Foundation
2
// This file is part of TRIQS/nda and is licensed under the Apache License, Version 2.0.
3
// SPDX-License-Identifier: Apache-2.0
4
// See LICENSE in the root of this distribution for details.
5
10
11
#pragma once
12
13
#include "
./interface/cxx_interface.hpp
"
14
#include "
../basic_array.hpp
"
15
#include "
../concepts.hpp
"
16
#include "
../declarations.hpp
"
17
#include "
../macros.hpp
"
18
#include "
../mem/address_space.hpp
"
19
#include "
../traits.hpp
"
20
21
#include <algorithm>
22
#include <cmath>
23
#include <complex>
24
#include <type_traits>
25
26
namespace
nda::lapack {
27
58
template
<MemoryMatrix A, MemoryVector TAU>
59
requires
(
mem::have_host_compatible_addr_space<A>
and std::is_same_v<std::complex<double>,
get_value_t<A>
> and
have_same_value_type_v<A, TAU>
)
60
int
ungqr
(A &&a, TAU &&tau) {
// NOLINT (temporary views are allowed here)
61
static_assert
(
has_F_layout<A>
,
"Error in nda::lapack::ungqr: A must have Fortran layout"
);
62
63
// check the dimensions of the input/output arrays/views
64
auto
const
[m, n] = a.shape();
65
auto
const
k = tau.size();
66
EXPECTS(m >= n);
67
EXPECTS(n >= k);
68
69
// arrays/views must be LAPACK compatible
70
EXPECTS(a.indexmap().min_stride() == 1);
71
EXPECTS(tau.indexmap().min_stride() == 1);
72
73
// first call to get the optimal buffer size
74
std::complex<double> tmp_lwork{};
75
int
info = 0;
76
lapack::f77::ungqr(m, n, k, a.data(),
get_ld
(a), tau.data(), &tmp_lwork, -1, info);
77
int
lwork =
static_cast<
int
>
(std::ceil(std::real(tmp_lwork)));
78
79
// allocate work buffer and perform actual library call
80
nda::array<std::complex<double>
, 1> work(lwork);
81
lapack::f77::ungqr(m, n, k, a.data(),
get_ld
(a), tau.data(), work.
data
(), lwork, info);
82
83
return
info;
84
}
85
86
}
// namespace nda::lapack
address_space.hpp
Provides definitions and type traits involving the different memory address spaces supported by nda.
basic_array.hpp
Provides the generic class for arrays.
nda::basic_array::data
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...
Definition
basic_array.hpp:619
concepts.hpp
Provides concepts for the nda library.
declarations.hpp
Provides various convenient aliases and helper functions for nda::basic_array and nda::basic_array_vi...
nda::array
basic_array< ValueType, Rank, Layout, 'A', ContainerPolicy > array
Alias template of an nda::basic_array with an 'A' algebra.
Definition
declarations.hpp:64
nda::have_same_value_type_v
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:195
nda::get_value_t
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:191
nda::lapack::ungqr
int ungqr(A &&a, TAU &&tau)
Interface to the LAPACK ungqr routine.
Definition
ungqr.hpp:60
nda::mem::have_host_compatible_addr_space
static constexpr bool have_host_compatible_addr_space
Constexpr variable that is true if all given types have an address space compatible with Host.
Definition
address_space.hpp:173
cxx_interface.hpp
Provides a C++ interface for various LAPACK routines.
nda::lapack::get_ld
int get_ld(A const &a)
Get the leading dimension of an nda::MemoryArray with rank 1 or 2 for BLAS/LAPACK calls.
Definition
tools.hpp:122
nda::lapack::has_F_layout
static constexpr bool has_F_layout
Constexpr variable that is true if the given nda::Array type has nda::F_layout.
Definition
tools.hpp:73
macros.hpp
Macros used in the nda library.
traits.hpp
Provides type traits for the nda library.
nda
lapack
ungqr.hpp
Generated by
1.17.0