|
TRIQS/nda 2.0.0
Multi-dimensional array library for C++
|
#include "./interface/cxx_interface.hpp"#include "../basic_array.hpp"#include "../basic_functions.hpp"#include "../blas/tools.hpp"#include "../concepts.hpp"#include "../declarations.hpp"#include "../device.hpp"#include "../layout/policies.hpp"#include "../macros.hpp"#include "../mem/address_space.hpp"#include "../mem/policies.hpp"#include "../traits.hpp"#include <algorithm>#include <cmath>#include <complex>#include <concepts>#include <utility>Provides a generic interface to the LAPACK/cuSOLVER gesvd routine.
Definition in file gesvd.hpp.
Go to the source code of this file.
Functions | |
| template<BlasArray< 2 > A, BlasArrayRealFor< A, 1 > S, BlasArrayFor< A, 2 > U, BlasArrayFor< A, 2 > VH, BlasArrayFor< A, 1 > W1 = vector_value_t<A>, BlasArrayRealFor< A, 1 > W2 = vector_fp_t<A>> requires (has_C_layout<A> == has_C_layout<U> and has_C_layout<A> == has_C_layout<VH>) | |
| int | nda::lapack::gesvd (A &&a, S &&s, U &&u, VH &&vh, W1 &&work=vector_value_t< A >{}, W2 &&rwork=vector_fp_t< A >{}) |
| Interface to the LAPACK/cuSOLVER gesvd routine. | |