31#ifndef NDA_HAVE_DEVICE
56 template <
typename A,
typename X,
typename Y>
58 EXPECTS(a.extent(1) == x.extent(0));
59 EXPECTS(a.extent(0) == y.extent(0));
60 for (
int i = 0; i < a.extent(0); ++i) {
62 for (
int k = 0; k < a.extent(1); ++k) y(i) += alpha * a(i, k) * x(k);
87 template <Matrix A, MemoryVector X, MemoryVector Y>
91 auto to_mat = []<
Matrix Z>(Z
const &z) ->
decltype(
auto) {
92 if constexpr (is_conj_array_expr<Z>)
93 return std::get<0>(z.a);
97 auto &mat = to_mat(a);
100 using mat_type =
decltype(mat);
104 EXPECTS(mat.extent(1) == x.extent(0));
105 EXPECTS(mat.extent(0) == y.extent(0));
106 EXPECTS(mat.indexmap().min_stride() == 1);
107 EXPECTS(x.indexmap().min_stride() == 1);
108 EXPECTS(y.indexmap().min_stride() == 1);
111 static constexpr bool conj_A = is_conj_array_expr<A>;
112 char op_a = get_op<conj_A, !has_F_layout<mat_type>>;
113 auto [m, n] = mat.shape();
114 if constexpr (has_C_layout<mat_type>) std::swap(m, n);
117#if defined(NDA_HAVE_DEVICE)
118 device::gemv(op_a, m, n, alpha, mat.data(), get_ld(mat), x.data(), x.indexmap().strides()[0], beta, y.data(), y.indexmap().strides()[0]);
123 f77::gemv(op_a, m, n, alpha, mat.data(), get_ld(mat), x.data(), x.indexmap().strides()[0], beta, y.data(), y.indexmap().strides()[0]);
Provides definitions and type traits involving the different memory address spaces supported by nda.
Provides a C++ interface for various BLAS routines.
Check if a given type is a matrix, i.e. an nda::ArrayOfRank<2>.
Check if a given type is a memory matrix, i.e. an nda::MemoryArrayOfRank<2>.
Provides concepts for the nda library.
Provides GPU and non-GPU specific functionality.
constexpr bool have_same_value_type_v
Constexpr variable that is true if all types in As have the same value type as A0.
std::decay_t< decltype(get_first_element(std::declval< A const >()))> get_value_t
Get the value type of an array/view or a scalar type.
void gemv_generic(get_value_t< A > alpha, A const &a, X const &x, get_value_t< A > beta, Y &&y)
Generic nda::blas::gemv implementation for types not supported by BLAS/LAPACK.
void gemv(get_value_t< A > alpha, A const &a, X const &x, get_value_t< A > beta, Y &&y)
Interface to the BLAS gemv routine.
static constexpr bool have_compatible_addr_space
Constexpr variable that is true if all given types have compatible address spaces.
static constexpr bool have_device_compatible_addr_space
Constexpr variable that is true if all given types have an address space compatible with Device.
void compile_error_no_gpu()
Trigger a compilation error in case GPU specific functionality is used without configuring the projec...
constexpr bool is_blas_lapack_v
Alias for nda::is_double_or_complex_v.
Macros used in the nda library.
Provides type traits for the nda library.