|
TRIQS/nda 2.0.0
Multi-dimensional array library for C++
|
#include "./getrf.hpp"#include "./interface/cxx_interface.hpp"#include "../basic_array.hpp"#include "../basic_functions.hpp"#include "../blas/interface/cxx_interface.hpp"#include "../blas/tools.hpp"#include "../concepts.hpp"#include "../declarations.hpp"#include "../device.hpp"#include "../layout_transforms.hpp"#include "../macros.hpp"#include "../mem/address_space.hpp"#include "../traits.hpp"#include <algorithm>#include <type_traits>#include <utility>Provides a generic interface to batched versions of the LAPACK/cuSOLVER getrf routine.
Definition in file getrf_batch.hpp.
Go to the source code of this file.
Functions | |
| template<BlasArray< 3 > A, PivotArrayFor< A, 2 > IPIV, BlasArrayFor< A, 1 > W = vector_value_t<A>> requires (has_F_layout<A> or has_C_layout<A>) | |
| auto | nda::lapack::getrf (A &&a, IPIV &&ipiv, W &&work=vector_value_t< A >{}) |
| Generic-friendly overload of nda::lapack::getrf for batches stored as 3-dimensional arrays. | |
| template<BlasArray< 3 > A, PivotArrayFor< A, 2 > IPIV, BlasArrayFor< A, 1 > W = vector_value_t<A>> requires (has_F_layout<A> or has_C_layout<A>) | |
| auto | nda::lapack::getrf_batch (A &&a, IPIV &&ipiv, W &&work=vector_value_t< A >{}) |
| Interface to batched versions of the LAPACK/cuSOLVER getrf routine. | |
| auto nda::lapack::getrf | ( | A && | a, |
| IPIV && | ipiv, | ||
| W && | work = vector_value_t<A>{} ) |
Generic-friendly overload of nda::lapack::getrf for batches stored as 3-dimensional arrays.
It simply calls nda::lapack::getrf_batch and lets generic code call getrf(...) regardless of whether the input is a single matrix (rank 2) or a batch (rank 3).
Definition at line 146 of file getrf_batch.hpp.