TRIQS/nda 1.3.0
Multi-dimensional array library for C++
|
#include "./interface/cxx_interface.hpp"
#include "../concepts.hpp"
#include "../declarations.hpp"
#include "../exceptions.hpp"
#include "../layout/policies.hpp"
#include "../macros.hpp"
#include "../mem/address_space.hpp"
#include "../mem/policies.hpp"
#include "../traits.hpp"
#include "../device.hpp"
#include <algorithm>
#include <cmath>
#include <complex>
#include <utility>
Provides a generic interface to the LAPACK gesvd
routine.
Definition in file gesvd.hpp.
Go to the source code of this file.
Functions | |
template<MemoryMatrix A, MemoryVector S, MemoryMatrix U, MemoryMatrix VT> requires (have_same_value_type_v<A, U, VT> and mem::have_compatible_addr_space<A, S, U, VT> and is_blas_lapack_v<get_value_t<A>>) | |
int | nda::lapack::gesvd (A &&a, S &&s, U &&u, VT &&vt) |
Interface to the LAPACK gesvd routine. | |