TRIQS/nda 2.0.0
Multi-dimensional array library for C++
Loading...
Searching...
No Matches
ggev.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 <cmath>
#include <complex>
#include <concepts>

Detailed Description

Provides a generic interface to the LAPACK ggev routine.

Definition in file ggev.hpp.

Go to the source code of this file.

Functions

template<BlasArrayCplx< 2 > A, BlasArrayFor< A, 2 > B, BlasArrayFor< A, 1 > A2, BlasArrayFor< A, 1 > B2, BlasArrayFor< A, 2 > VL, BlasArrayFor< A, 2 > VR, 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, B, VL, VR>)
int nda::lapack::ggev (A &&a, B &&b, A2 &&alpha, B2 &&beta, VL &&vl, VR &&vr, char jobvl='N', char jobvr='V', W1 &&work=vector_value_t< A >{}, W2 &&rwork=vector_fp_t< A >{})
 Interface to the LAPACK ggev routine for complex matrices.
template<BlasArrayReal< 2 > A, BlasArrayFor< A, 2 > B, BlasArrayFor< A, 1 > AR, BlasArrayFor< A, 1 > AI, BlasArrayFor< A, 1 > B2, BlasArrayFor< A, 2 > VL, BlasArrayFor< A, 2 > VR, BlasArrayFor< A, 1 > W1 = vector_value_t<A>>
requires (mem::have_host_compatible_addr_space<A> and has_F_layout<A, B, VL, VR>)
int nda::lapack::ggev (A &&a, B &&b, AR &&alphar, AI &&alphai, B2 &&beta, VL &&vl, VR &&vr, char jobvl='N', char jobvr='V', W1 &&work=vector_value_t< A >{})
 Interface to the LAPACK ggev routine for real matrices.