TRIQS/nda 2.0.0
Multi-dimensional array library for C++
Loading...
Searching...
No Matches
geev.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 geev routine.

Definition in file geev.hpp.

Go to the source code of this file.

Functions

template<BlasArrayCplx< 2 > A, BlasArrayFor< A, 1 > W, 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, VL, VR>)
int nda::lapack::geev (A &&a, W &&w, 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 geev routine for complex matrices.
template<BlasArrayReal< 2 > A, BlasArrayFor< A, 1 > WR, BlasArrayFor< A, 1 > WI, 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, VL, VR>)
int nda::lapack::geev (A &&a, WR &&wr, WI &&wi, VL &&vl, VR &&vr, char jobvl='N', char jobvr='V', W1 &&work=vector_value_t< A >{})
 Interface to the LAPACK geev routine for real matrices.