Blaze 3.9
dotu.h
Go to the documentation of this file.
1//=================================================================================================
33//=================================================================================================
34
35#ifndef _BLAZE_MATH_BLAS_DOTU_H_
36#define _BLAZE_MATH_BLAS_DOTU_H_
37
38
39//*************************************************************************************************
40// Includes
41//*************************************************************************************************
42
43#include <blaze/math/Aliases.h>
51
52
53namespace blaze {
54
55//=================================================================================================
56//
57// BLAS DOT PRODUCT (DOTU)
58//
59//=================================================================================================
60
61//*************************************************************************************************
64template< typename VT1, bool TF1, typename VT2, bool TF2 >
65ElementType_t<VT1> dotu( const DenseVector<VT1,TF1>& x, const DenseVector<VT2,TF2>& y );
67//*************************************************************************************************
68
69
70//*************************************************************************************************
87template< typename VT1, bool TF1, typename VT2, bool TF2 >
89{
92
95
98
99 const blas_int_t n( numeric_cast<blas_int_t>( (*x).size() ) );
100
101 return dotu( n, (*x).data(), 1, (*y).data(), 1 );
102}
103//*************************************************************************************************
104
105} // namespace blaze
106
107#endif
Header file for auxiliary alias declarations.
typename T::ElementType ElementType_t
Alias declaration for nested ElementType type definitions.
Definition: Aliases.h:190
Constraint on the data type.
Constraint on the data type.
Deactivation of problematic macros.
Cast operators for numeric types.
Header file for the CBLAS dotu wrapper functions.
Base class for N-dimensional dense vectors.
Definition: DenseVector.h:77
Constraint on the data type.
Header file for the DenseVector base class.
ElementType_t< VT1 > dotu(const DenseVector< VT1, TF1 > &x, const DenseVector< VT2, TF2 > &y)
BLAS kernel for a dense vector dot product ( ).
Definition: dotu.h:88
#define BLAZE_CONSTRAINT_MUST_BE_BLAS_COMPATIBLE_TYPE(T)
Constraint on the data type.
Definition: BLASCompatible.h:61
#define BLAZE_CONSTRAINT_MUST_NOT_BE_COMPUTATION_TYPE(T)
Constraint on the data type.
Definition: Computation.h:81
#define BLAZE_CONSTRAINT_MUST_HAVE_CONST_DATA_ACCESS(T)
Constraint on the data type.
Definition: ConstDataAccess.h:61
int32_t blas_int_t
Signed integer type used in the BLAS/LAPACK wrapper functions.
Definition: Types.h:64