1
      2
      3
      4
      5
<doc  6
      7
      8
      9
     10
     11
     12
     13
     14
     15
     16
     17

     18
     19
     20
     21
     22
     23
#ifndef ULMBLAS_IMPL_LEVEL1EXTENSIONS_AXPY2V_H
#define ULMBLAS_IMPL_LEVEL1EXTENSIONS_AXPY2V_H 1

namespace ulmBLAS {

template <typename IndexType, typename Alpha0, typename Alpha1,
          typename VX0, typename VX1, typename VY>
    void
    axpy2v(IndexType      n,
           const Alpha0   &alpha0,
           const Alpha1   &alpha1,
           const VX0      *x0,
           IndexType      incX0,
           const VX1      *x1,
           IndexType      incX1,
           VY             *y,
           IndexType      incY);

// namespace ulmBLAS

#endif // ULMBLAS_IMPL_LEVEL1EXTENSIONS_AXPY2V_H 1

#include <ulmblas/impl/level1extensions/axpy2v.tcc>