|
TRIQS/nda 1.3.0
Multi-dimensional array library for C++
|
#include "./interface/cxx_interface.hpp"#include "../concepts.hpp"#include "../macros.hpp"#include "../mapped_functions.hpp"#include "../mem/address_space.hpp"#include "../traits.hpp"#include "../device.hpp"#include <complex>Provides a generic interface to the BLAS dot routine.
Definition in file dot.hpp.
Go to the source code of this file.
Functions | |
| template<typename X, typename Y> requires ((Scalar<X> or MemoryVector<X>) and (Scalar<Y> or MemoryVector<X>)) | |
| auto | nda::blas::dot (X const &x, Y const &y) |
| Interface to the BLAS dot routine. | |
| template<typename X, typename Y> | |
| auto | nda::blas::dot_generic (X const &x, Y const &y) |
| Generic implementation of nda::blas::dot for types not supported by BLAS/LAPACK. | |
| template<typename X, typename Y> requires ((Scalar<X> or MemoryVector<X>) and (Scalar<Y> or MemoryVector<X>)) | |
| auto | nda::blas::dotc (X const &x, Y const &y) |
| Interface to the BLAS dotc routine. | |
| template<typename X, typename Y> | |
| auto | nda::blas::dotc_generic (X const &x, Y const &y) |
| Generic implementation of nda::blas::dotc for types not supported by BLAS/LAPACK. | |