35 #ifndef _BLAZE_MATH_SMP_DEFAULT_SPARSEVECTOR_H_
36 #define _BLAZE_MATH_SMP_DEFAULT_SPARSEVECTOR_H_
61 template<
typename VT1,
bool TF1,
typename VT2,
bool TF2 >
62 inline void smpAssign( SparseVector<VT1,TF1>& lhs,
const Vector<VT2,TF2>& rhs );
64 template<
typename VT1,
bool TF1,
typename VT2,
bool TF2 >
65 inline void smpAddAssign( SparseVector<VT1,TF1>& lhs,
const Vector<VT2,TF2>& rhs );
67 template<
typename VT1,
bool TF1,
typename VT2,
bool TF2 >
68 inline void smpSubAssign( SparseVector<VT1,TF1>& lhs,
const Vector<VT2,TF2>& rhs );
70 template<
typename VT1,
bool TF1,
typename VT2,
bool TF2 >
71 inline void smpMultAssign( SparseVector<VT1,TF1>& lhs,
const Vector<VT2,TF2>& rhs );
90 template<
typename VT1
118 template<
typename VT1
147 template<
typename VT1
176 template<
typename VT1
Header file for the SparseVector base class.
void smpSubAssign(DenseMatrix< MT1, SO1 > &lhs, const Matrix< MT2, SO2 > &rhs)
Default implementation of the SMP subtraction assignment of a matrix to dense matrix.
Definition: DenseMatrix.h:152
void smpMultAssign(DenseVector< VT1, TF1 > &lhs, const Vector< VT2, TF2 > &rhs)
Default implementation of the SMP multiplication assignment of a vector to a dense vector...
Definition: DenseVector.h:179
void smpAddAssign(DenseMatrix< MT1, SO1 > &lhs, const Matrix< MT2, SO2 > &rhs)
Default implementation of the SMP addition assignment of a matrix to a dense matrix.
Definition: DenseMatrix.h:122
void assign(Matrix< MT1, SO1 > &lhs, const Matrix< MT2, SO2 > &rhs)
Default implementation of the assignment of a matrix to a matrix.
Definition: Matrix.h:271
void multAssign(Matrix< MT1, SO1 > &lhs, const Matrix< MT2, SO2 > &rhs)
Default implementation of the multiplication assignment of a matrix to a matrix.
Definition: Matrix.h:361
void smpAssign(DenseMatrix< MT1, SO1 > &lhs, const Matrix< MT2, SO2 > &rhs)
Default implementation of the SMP assignment of a matrix to a dense matrix.
Definition: DenseMatrix.h:92
Header file for run time assertion macros.
void addAssign(Matrix< MT1, SO1 > &lhs, const Matrix< MT2, SO2 > &rhs)
Default implementation of the addition assignment of a matrix to a matrix.
Definition: Matrix.h:301
void subAssign(Matrix< MT1, SO1 > &lhs, const Matrix< MT2, SO2 > &rhs)
Default implementation of the subtraction assignment of a matrix to matrix.
Definition: Matrix.h:331
Base class for N-dimensional vectors.The Vector class is a base class for all arbitrarily sized (N-di...
Definition: Forward.h:151
Base class for sparse vectors.The SparseVector class is a base class for all arbitrarily sized (N-dim...
Definition: Forward.h:108
#define BLAZE_FUNCTION_TRACE
Function trace macro.This macro can be used to reliably trace function calls. In case function tracin...
Definition: FunctionTrace.h:157
Header file for the Vector CRTP base class.
#define BLAZE_INTERNAL_ASSERT(expr, msg)
Run time assertion macro for internal checks.In case of an invalid run time expression, the program execution is terminated. The BLAZE_INTERNAL_ASSERT macro can be disabled by setting the BLAZE_USER_ASSERTION flag to zero or by defining NDEBUG during the compilation.
Definition: Assert.h:101
Header file for the FunctionTrace class.