TRIQS/nda 2.0.0
Multi-dimensional array library for C++
Loading...
Searching...
No Matches
geqp3.hpp
#include "./interface/cxx_interface.hpp"
#include "../basic_array.hpp"
#include "../basic_functions.hpp"
#include "../blas/tools.hpp"
#include "../concepts.hpp"
#include "../declarations.hpp"
#include "../macros.hpp"
#include "../mem/address_space.hpp"
#include "../traits.hpp"
#include <algorithm>
#include <cmath>
#include <complex>
#include <type_traits>

Detailed Description

Provides a generic interface to the LAPACK geqp3 routine.

Definition in file geqp3.hpp.

Go to the source code of this file.

Functions

template<BlasArray< 2 > A, PivotArrayFor< A, 1 > JPVT, BlasArrayFor< A, 1 > TAU, BlasArrayFor< A, 1 > W1 = vector_value_t<A>, BlasArrayRealFor< A, 1 > W2 = vector_fp_t<A>>
requires (mem::have_host_compatible_addr_space<A> and has_F_layout<A>)
int nda::lapack::geqp3 (A &&a, JPVT &&jpvt, TAU &&tau, W1 &&work=vector_value_t< A >{}, W2 &&rwork=vector_fp_t< A >{})
 Interface to the LAPACK geqp3 routine.