|
template<typename T , typename DST , typename std::enable_if< IsVector< DST >::value &&SameElementType< DST, T >::value, bool >::type = true> |
void | _Fill (DST &v, const T val, vector_length_t l, const Scalar *=nullptr) |
| Fill evaluator for scalar architecture.
|
|
template<typename T , typename DST , typename std::enable_if< must_use_matrix_idx< DST >() &&SameElementType< DST, T >::value, bool >::type = true> |
void | _Fill2D (DST &v, const T val, const vector_length_t rows, const vector_length_t cols, const Scalar *=nullptr) |
| Fill2D evaluator for scalar architecture.
|
|
template<typename DA , typename DB , typename std::enable_if< vector_idx_pair< DA, DB >(), bool >::type = true> |
void | eval (DA &v, const DB &other, const vector_length_t l, const Scalar *=nullptr) |
| Expression evaluator for vector in scalar mode.
|
|
template<typename DA , typename DB , typename std::enable_if< must_use_matrix_idx_pair< DA, DB >(), bool >::type = true> |
void | eval2D (DA &v, const DB &other, const vector_length_t rows, const vector_length_t cols, const Scalar *=nullptr) |
| 2D expression evaluator for scalar archiecture
|
|
template<typename DA , typename DB , typename std::enable_if< vector_idx_pair< DA, DB >(), bool >::type = true> |
DotResult< DA > | _dot (const DA &a, const DB &b, const vector_length_t l, const Scalar *=nullptr) |
| Dot product evaluator for scalar architectuire.
|
|
template<typename DA , typename DB , typename std::enable_if< vector_idx_pair< DA, DB >(), bool >::type = true> |
void | _swap (DA &&a, DB &&b, const vector_length_t l, const Scalar *=nullptr) |
| Swap evaluator for scalar architecture.
|
|