TRIQS/nda 1.3.0
Multi-dimensional array library for C++
Loading...
Searching...
No Matches
dot.hpp
#include "./interface/cxx_interface.hpp"
#include "../concepts.hpp"
#include "../macros.hpp"
#include "../mem/address_space.hpp"
#include "../traits.hpp"
#include "../device.hpp"

Detailed Description

Provides a generic interface to the BLAS dot, dotu and dotc routine.

Definition in file dot.hpp.

Go to the source code of this file.

Functions

template<MemoryVector X, MemoryVector Y>
requires (have_same_value_type_v<X, Y> and mem::have_compatible_addr_space<X, Y> and is_blas_lapack_v<get_value_t<X>>)
auto nda::blas::dot (X const &x, Y const &y)
 Interface to the BLAS dot and dotu routine.
template<MemoryVector X, MemoryVector Y>
requires (have_same_value_type_v<X, Y> and mem::have_compatible_addr_space<X, Y> and is_blas_lapack_v<get_value_t<X>>)
auto nda::blas::dotc (X const &x, Y const &y)
 Interface to the BLAS dotc routine.