35 #ifndef _BLAZE_MATH_DENSE_STATICVECTOR_H_
36 #define _BLAZE_MATH_DENSE_STATICVECTOR_H_
175 template<
typename Type
178 class StaticVector :
public DenseVector< StaticVector<Type,N,TF>, TF >
187 enum { NN = N + ( IT::size - ( N % IT::size ) ) % IT::size };
217 enum { smpAssignable = 0 };
225 template<
typename Other >
explicit inline StaticVector(
size_t n,
const Other* array );
227 template<
typename Other >
228 explicit inline StaticVector(
const Other (&array)[N] );
231 template<
typename Other >
inline StaticVector(
const StaticVector<Other,N,TF>& v );
232 template<
typename VT >
inline StaticVector(
const Vector<VT,TF>& v );
235 inline StaticVector(
const Type& v1,
const Type& v2,
const Type& v3 );
236 inline StaticVector(
const Type& v1,
const Type& v2,
const Type& v3,
const Type& v4 );
237 inline StaticVector(
const Type& v1,
const Type& v2,
const Type& v3,
238 const Type& v4,
const Type& v5 );
239 inline StaticVector(
const Type& v1,
const Type& v2,
const Type& v3,
240 const Type& v4,
const Type& v5,
const Type& v6 );
253 inline Type*
data ();
254 inline const Type*
data ()
const;
267 template<
typename Other >
268 inline StaticVector& operator=(
const Other (&array)[N] );
272 template<
typename Other >
inline StaticVector& operator= (
const StaticVector<Other,N,TF>& rhs );
273 template<
typename VT >
inline StaticVector& operator= (
const Vector<VT,TF>& rhs );
274 template<
typename VT >
inline StaticVector& operator+=(
const Vector<VT,TF>& rhs );
275 template<
typename VT >
inline StaticVector& operator-=(
const Vector<VT,TF>& rhs );
276 template<
typename VT >
inline StaticVector& operator*=(
const Vector<VT,TF>& rhs );
278 template<
typename Other >
279 inline typename EnableIf< IsNumeric<Other>,
StaticVector >::Type&
280 operator*=( Other rhs );
282 template<
typename Other >
283 inline typename EnableIf< IsNumeric<Other>,
StaticVector >::Type&
284 operator/=( Other rhs );
291 inline size_t size()
const;
295 template<
typename Other >
inline StaticVector& scale( Other scalar );
303 template<
typename VT >
305 struct VectorizedAssign {
306 enum { value = vectorizable && VT::vectorizable &&
307 IsSame<Type,typename VT::ElementType>::value };
314 template<
typename VT >
316 struct VectorizedAddAssign {
317 enum { value = vectorizable && VT::vectorizable &&
318 IsSame<Type,typename VT::ElementType>::value &&
319 IntrinsicTrait<Type>::addition };
326 template<
typename VT >
328 struct VectorizedSubAssign {
329 enum { value = vectorizable && VT::vectorizable &&
330 IsSame<Type,typename VT::ElementType>::value &&
331 IntrinsicTrait<Type>::subtraction };
338 template<
typename VT >
340 struct VectorizedMultAssign {
341 enum { value = vectorizable && VT::vectorizable &&
342 IsSame<Type,typename VT::ElementType>::value &&
343 IntrinsicTrait<Type>::multiplication };
352 template<
typename Other >
inline bool canAlias (
const Other* alias )
const;
353 template<
typename Other >
inline bool isAliased(
const Other* alias )
const;
363 template<
typename VT >
364 inline typename DisableIf< VectorizedAssign<VT> >::Type
365 assign(
const DenseVector<VT,TF>& rhs );
367 template<
typename VT >
368 inline typename EnableIf< VectorizedAssign<VT> >::Type
369 assign(
const DenseVector<VT,TF>& rhs );
371 template<
typename VT >
inline void assign(
const SparseVector<VT,TF>& rhs );
373 template<
typename VT >
374 inline typename DisableIf< VectorizedAddAssign<VT> >::Type
375 addAssign(
const DenseVector<VT,TF>& rhs );
377 template<
typename VT >
378 inline typename EnableIf< VectorizedAddAssign<VT> >::Type
379 addAssign(
const DenseVector<VT,TF>& rhs );
381 template<
typename VT >
inline void addAssign(
const SparseVector<VT,TF>& rhs );
383 template<
typename VT >
384 inline typename DisableIf< VectorizedSubAssign<VT> >::Type
385 subAssign(
const DenseVector<VT,TF>& rhs );
387 template<
typename VT >
388 inline typename EnableIf< VectorizedSubAssign<VT> >::Type
389 subAssign(
const DenseVector<VT,TF>& rhs );
391 template<
typename VT >
inline void subAssign(
const SparseVector<VT,TF>& rhs );
393 template<
typename VT >
394 inline typename DisableIf< VectorizedMultAssign<VT> >::Type
395 multAssign(
const DenseVector<VT,TF>& rhs );
397 template<
typename VT >
398 inline typename EnableIf< VectorizedMultAssign<VT> >::Type
399 multAssign(
const DenseVector<VT,TF>& rhs );
401 template<
typename VT >
inline void multAssign(
const SparseVector<VT,TF>& rhs );
445 template<
typename Type
451 for(
size_t i=0UL; i<NN; ++i )
463 template<
typename Type
468 for(
size_t i=0UL; i<N; ++i )
472 for(
size_t i=N; i<NN; ++i )
501 template<
typename Type
504 template<
typename Other >
508 throw std::invalid_argument(
"Invalid setup of static vector" );
510 for(
size_t i=0UL; i<n; ++i )
514 for(
size_t i=n; i<NN; ++i )
537 template<
typename Type
540 template<
typename Other >
543 for(
size_t i=0UL; i<N; ++i )
547 for(
size_t i=N; i<NN; ++i )
561 template<
typename Type
566 for(
size_t i=0UL; i<NN; ++i )
577 template<
typename Type
580 template<
typename Other >
583 for(
size_t i=0UL; i<N; ++i )
587 for(
size_t i=N; i<NN; ++i )
604 template<
typename Type
607 template<
typename VT >
612 if( (~v).size() != N )
613 throw std::invalid_argument(
"Invalid setup of static vector" );
637 template<
typename Type
648 for(
size_t i=N; i<NN; ++i )
668 template<
typename Type
680 for(
size_t i=N; i<NN; ++i )
701 template<
typename Type
705 const Type& v3,
const Type& v4 )
715 for(
size_t i=N; i<NN; ++i )
737 template<
typename Type
741 const Type& v4,
const Type& v5 )
752 for(
size_t i=N; i<NN; ++i )
775 template<
typename Type
779 const Type& v4,
const Type& v5,
const Type& v6 )
791 for(
size_t i=N; i<NN; ++i )
814 template<
typename Type
834 template<
typename Type
853 template<
typename Type
870 template<
typename Type
885 template<
typename Type
900 template<
typename Type
915 template<
typename Type
930 template<
typename Type
945 template<
typename Type
960 template<
typename Type
995 template<
typename Type
998 template<
typename Other >
1001 for(
size_t i=0UL; i<N; ++i )
1014 template<
typename Type
1019 for(
size_t i=0UL; i<N; ++i )
1034 template<
typename Type
1053 template<
typename Type
1056 template<
typename Other >
1077 template<
typename Type
1080 template<
typename VT >
1085 if( (~rhs).size() != N )
1086 throw std::invalid_argument(
"Invalid assignment to static vector" );
1088 if( (~rhs).canAlias(
this ) ) {
1113 template<
typename Type
1116 template<
typename VT >
1121 if( (~rhs).size() != N )
1122 throw std::invalid_argument(
"Vector sizes do not match" );
1124 if( (~rhs).canAlias(
this ) ) {
1147 template<
typename Type
1150 template<
typename VT >
1155 if( (~rhs).size() != N )
1156 throw std::invalid_argument(
"Vector sizes do not match" );
1158 if( (~rhs).canAlias(
this ) ) {
1182 template<
typename Type
1185 template<
typename VT >
1190 if( (~rhs).size() != N )
1191 throw std::invalid_argument(
"Vector sizes do not match" );
1195 this->operator=( tmp );
1198 assign( *
this, *
this * (~rhs) );
1213 template<
typename Type
1216 template<
typename Other >
1222 assign( *
this, (*
this) * rhs );
1237 template<
typename Type
1240 template<
typename Other >
1248 assign( *
this, (*
this) / rhs );
1267 template<
typename Type
1282 template<
typename Type
1300 template<
typename Type
1305 size_t nonzeros( 0 );
1307 for(
size_t i=0UL; i<N; ++i ) {
1322 template<
typename Type
1328 for(
size_t i=0UL; i<N; ++i )
1340 template<
typename Type
1343 template<
typename Other >
1346 for(
size_t i=0; i<N; ++i )
1360 template<
typename Type
1367 for(
size_t i=0UL; i<N; ++i )
1368 swap( v_[i], v.v_[i] );
1391 template<
typename Type
1394 template<
typename Other >
1397 return static_cast<const void*
>( this ) == static_cast<const void*>( alias );
1412 template<
typename Type
1415 template<
typename Other >
1418 return static_cast<const void*
>( this ) == static_cast<const void*>( alias );
1432 template<
typename Type
1455 template<
typename Type
1469 return load( &v_[index] );
1487 template<
typename Type
1500 return loadu( &v_[index] );
1519 template<
typename Type
1532 store( &v_[index], value );
1551 template<
typename Type
1563 storeu( &v_[index], value );
1582 template<
typename Type
1595 stream( &v_[index], value );
1611 template<
typename Type
1614 template<
typename VT >
1620 for(
size_t i=0UL; i<N; ++i )
1637 template<
typename Type
1640 template<
typename VT >
1650 for(
size_t i=0UL; i<N; i+=IT::size ) {
1668 template<
typename Type
1671 template<
typename VT >
1676 for(
typename VT::ConstIterator element=(~rhs).begin(); element!=(~rhs).end(); ++element )
1677 v_[element->index()] = element->value();
1693 template<
typename Type
1696 template<
typename VT >
1702 for(
size_t i=0UL; i<N; ++i )
1719 template<
typename Type
1722 template<
typename VT >
1733 for(
size_t i=0UL; i<N; i+=IT::size ) {
1751 template<
typename Type
1754 template<
typename VT >
1759 for(
typename VT::ConstIterator element=(~rhs).begin(); element!=(~rhs).end(); ++element )
1760 v_[element->index()] += element->value();
1776 template<
typename Type
1779 template<
typename VT >
1785 for(
size_t i=0UL; i<N; ++i )
1802 template<
typename Type
1805 template<
typename VT >
1816 for(
size_t i=0UL; i<N; i+=IT::size ) {
1834 template<
typename Type
1837 template<
typename VT >
1842 for(
typename VT::ConstIterator element=(~rhs).begin(); element!=(~rhs).end(); ++element )
1843 v_[element->index()] -= element->value();
1859 template<
typename Type
1862 template<
typename VT >
1868 for(
size_t i=0UL; i<N; ++i )
1885 template<
typename Type
1888 template<
typename VT >
1899 for(
size_t i=0UL; i<N; i+=IT::size ) {
1917 template<
typename Type
1920 template<
typename VT >
1929 for(
typename VT::ConstIterator element=(~rhs).begin(); element!=(~rhs).end(); ++element )
1930 v_[element->index()] = tmp[element->index()] * element->value();
1955 template<
typename Type
1977 template<
typename Type,
size_t N,
bool TF >
1980 template<
typename Type,
size_t N,
bool TF >
1983 template<
typename Type,
size_t N,
bool TF >
1986 template<
typename Type,
bool TF >
1989 template<
typename Type,
bool TF >
1992 template<
typename Type,
size_t N,
bool TF >
2005 template<
typename Type
2024 template<
typename Type
2052 template<
typename Type
2057 for(
size_t i=0UL; i<N; ++i )
2075 template<
typename Type
2092 template<
typename Type
2096 if( v[0] != Type() || v[1] != Type() )
2113 template<
typename Type
2133 template<
typename T1,
size_t N,
bool TF,
typename T2 >
2134 struct AddTrait< StaticVector<T1,N,TF>, StaticVector<T2,N,TF> >
2136 typedef StaticVector< typename AddTrait<T1,T2>::Type, N, TF > Type;
2152 template<
typename T1,
size_t N,
bool TF,
typename T2 >
2153 struct SubTrait< StaticVector<T1,N,TF>, StaticVector<T2,N,TF> >
2155 typedef StaticVector< typename SubTrait<T1,T2>::Type, N, TF > Type;
2171 template<
typename T1,
size_t N,
bool TF,
typename T2 >
2172 struct MultTrait< StaticVector<T1,N,TF>, T2 >
2174 typedef StaticVector< typename MultTrait<T1,T2>::Type, N, TF > Type;
2178 template<
typename T1,
typename T2,
size_t N,
bool TF >
2179 struct MultTrait< T1, StaticVector<T2,N,TF> >
2181 typedef StaticVector< typename MultTrait<T1,T2>::Type, N, TF > Type;
2185 template<
typename T1,
size_t N,
bool TF,
typename T2 >
2186 struct MultTrait< StaticVector<T1,N,TF>, StaticVector<T2,N,TF> >
2188 typedef StaticVector< typename MultTrait<T1,T2>::Type, N, TF > Type;
2191 template<
typename T1,
size_t M,
typename T2,
size_t N >
2192 struct MultTrait< StaticVector<T1,M,false>, StaticVector<T2,N,true> >
2194 typedef StaticMatrix< typename MultTrait<T1,T2>::Type, M, N,
false > Type;
2197 template<
typename T1,
size_t N,
typename T2 >
2198 struct MultTrait< StaticVector<T1,N,true>, StaticVector<T2,N,false> >
2200 typedef typename MultTrait<T1,T2>::Type Type;
2216 template<
typename T1,
typename T2 >
2217 struct CrossTrait< StaticVector<T1,3UL,false>, StaticVector<T2,3UL,false> >
2220 typedef typename MultTrait<T1,T2>::Type T;
2223 typedef StaticVector< typename SubTrait<T,T>::Type, 3UL,
false > Type;
2239 template<
typename T1,
size_t N,
bool TF,
typename T2 >
2240 struct DivTrait< StaticVector<T1,N,TF>, T2 >
2242 typedef StaticVector< typename DivTrait<T1,T2>::Type, N, TF > Type;
2259 template<
typename T1,
size_t N,
bool TF,
typename T2 >
2260 struct MathTrait< StaticVector<T1,N,TF>, StaticVector<T2,N,TF> >
2262 typedef StaticVector< typename MathTrait<T1,T2>::HighType, N, TF > HighType;
2263 typedef StaticVector< typename MathTrait<T1,T2>::LowType , N, TF > LowType;
2279 template<
typename T1,
size_t N,
bool TF >
2280 struct SubvectorTrait< StaticVector<T1,N,TF> >
2282 typedef HybridVector<T1,N,TF> Type;
Compile time check for vectorizable types.Depending on the available instruction set (SSE...
Definition: IsVectorizable.h:108
Constraint on the data type.
#define BLAZE_CONSTRAINT_MUST_NOT_BE_CONST(T)
Constraint on the data type.In case the given data type is a const-qualified type, a compilation error is created.
Definition: Const.h:116
IntrinsicType load(size_t index) const
Aligned load of an intrinsic element of the vector.
Definition: StaticVector.h:1459
const bool defaultTransposeFlag
The default transpose flag for all vectors of the Blaze library.This value specifies the default tran...
Definition: TransposeFlag.h:56
Compile time check for numeric types.This type trait tests whether or not the given template paramete...
Definition: IsNumeric.h:98
Constraint on the data type.
void reset(DynamicMatrix< Type, SO > &m)
Resetting the given dense matrix.
Definition: DynamicMatrix.h:4579
#define BLAZE_USER_ASSERT(expr, msg)
Run time assertion macro for user checks.In case of an invalid run time expression, the program execution is terminated. The BLAZE_USER_ASSERT macro can be disabled by setting the BLAZE_USER_ASSERT flag to zero or by defining NDEBUG during the compilation.
Definition: Assert.h:117
EnableIf< IsIntegral< T >, Load< T, sizeof(T)> >::Type::Type load(const T *address)
Loads a vector of integral values.
Definition: Load.h:222
Header file for the subtraction trait.
Header file for the SparseVector base class.
Iterator end()
Returns an iterator just past the last element of the static vector.
Definition: StaticVector.h:933
AlignedArray< Type, NN > v_
The statically allocated vector elements.
Definition: StaticVector.h:409
bool isDefault(const DynamicMatrix< Type, SO > &m)
Returns whether the given dense matrix is in default state.
Definition: DynamicMatrix.h:4622
EnableIf< IsIntegral< T >, Loadu< T, sizeof(T)> >::Type::Type loadu(const T *address)
Loads a vector of integral values.
Definition: Loadu.h:219
Header file for the IsSame and IsStrictlySame type traits.
void storeu(float *address, const sse_float_t &value)
Unaligned store of a vector of 'float' values.
Definition: Storeu.h:234
Header file for the DenseVector base class.
StaticVector< Type, N,!TF > TransposeType
Transpose type for expression template evaluations.
Definition: StaticVector.h:194
#define BLAZE_CONSTRAINT_MUST_NOT_BE_VOLATILE(T)
Constraint on the data type.In case the given data type is a volatile-qualified type, a compilation error is created.
Definition: Volatile.h:116
Type & Reference
Reference to a non-constant vector value.
Definition: StaticVector.h:199
size_t nonZeros() const
Returns the number of non-zero elements in the vector.
Definition: StaticVector.h:1303
void clear(DynamicMatrix< Type, SO > &m)
Clearing the given dense matrix.
Definition: DynamicMatrix.h:4595
Constraint on the data type.
Efficient implementation of a fixed-sized vector.The StaticVector class template is the representatio...
Definition: Forward.h:51
void stream(float *address, const sse_float_t &value)
Aligned, non-temporal store of a vector of 'float' values.
Definition: Stream.h:233
bool isAligned() const
Returns whether the vector is properly aligned in memory.
Definition: StaticVector.h:1435
Header file for the DisableIf class template.
size_t capacity() const
Returns the maximum capacity of the vector.
Definition: StaticVector.h:1285
bool canAlias(const Other *alias) const
Returns whether the vector can alias with the given address alias.
Definition: StaticVector.h:1395
void swap(StaticVector &v)
Swapping the contents of two static vectors.
Definition: StaticVector.h:1363
Header file for the multiplication trait.
Header file for nested template disabiguation.
void swap(CompressedMatrix< Type, SO > &a, CompressedMatrix< Type, SO > &b)
Swapping the contents of two sparse matrices.
Definition: CompressedMatrix.h:4558
Header file for all forward declarations of the math module.
const Element * ConstIterator
Iterator over constant elements.
Definition: CompressedMatrix.h:2388
#define BLAZE_CONSTRAINT_MUST_NOT_BE_POINTER_TYPE(T)
Constraint on the data type.In case the given data type T is not a pointer type, a compilation error ...
Definition: Pointer.h:116
Header file for the DenseIterator class template.
Header file for the subvector trait.
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:179
Constraint on the data type.
Base class for N-dimensional dense vectors.The DenseVector class is a base class for all arbitrarily ...
Definition: DenseVector.h:70
Compile time check for sparse vector types.This type trait tests whether or not the given template pa...
Definition: IsSparseVector.h:103
This ResultType
Result type for expression template evaluations.
Definition: StaticVector.h:193
void reset()
Reset to the default initial values.
Definition: StaticVector.h:1325
#define BLAZE_CONSTRAINT_MUST_BE_VECTORIZABLE_TYPE(T)
Constraint on the data type.In case the given data type T is not a vectorizable data type...
Definition: Vectorizable.h:79
ConstIterator cbegin() const
Returns an iterator to the first element of the static vector.
Definition: StaticVector.h:918
Reference operator[](size_t index)
Subscript operator for the direct access to the vector elements.
Definition: StaticVector.h:818
IT::Type IntrinsicType
Intrinsic type of the vector elements.
Definition: StaticVector.h:196
const StaticVector< Type, 2UL, TF > perp(const StaticVector< Type, 2UL, TF > &v)
Unary perp dot product operator for the calculation of a perpendicular vector ( ).
Definition: StaticVector.h:2077
void store(size_t index, const IntrinsicType &value)
Aligned store of an intrinsic element of the vector.
Definition: StaticVector.h:1522
Header file for the EnableIf class template.
Header file for the IsVectorizable type trait.
Header file for the IsNumeric type trait.
DenseIterator< Type > Iterator
Iterator over non-constant elements.
Definition: StaticVector.h:201
Header file for the IsSparseVector type trait.
Intrinsic characteristics of data types.The IntrinsicTrait class template provides the intrinsic char...
Definition: IntrinsicTrait.h:748
StaticVector()
The default constructor for StaticVector.
Definition: StaticVector.h:448
Header file for run time assertion macros.
Header file for the addition trait.
Header file for the cross product trait.
Header file for the division trait.
void swap(DynamicMatrix< Type, SO > &a, DynamicMatrix< Type, SO > &b)
Swapping the contents of two matrices.
Definition: DynamicMatrix.h:4651
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:209
const Type & ReturnType
Return type for expression template evaluations.
Definition: StaticVector.h:197
Constraint on the data type.
Substitution Failure Is Not An Error (SFINAE) class.The EnableIf class template is an auxiliary tool ...
Definition: EnableIf.h:184
const Type & ConstReference
Reference to a constant vector value.
Definition: StaticVector.h:200
#define BLAZE_CONSTRAINT_MUST_BE_NUMERIC_TYPE(T)
Constraint on the data type.In case the given data type T is not a numeric (integral or floating poin...
Definition: Numeric.h:79
Iterator begin()
Returns an iterator to the first element of the static vector.
Definition: StaticVector.h:888
Header file for the reset shim.
Header file for the AlignedArray implementation.
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:239
#define BLAZE_CONSTRAINT_MUST_NOT_BE_REFERENCE_TYPE(T)
Constraint on the data type.In case the given data type T is not a reference type, a compilation error is created.
Definition: Reference.h:116
Element * Iterator
Iterator over non-constant elements.
Definition: CompressedMatrix.h:2387
Header file for the isDefault shim.
Constraint on the data type.
bool isAliased(const Other *alias) const
Returns whether the vector is aliased with the given address alias.
Definition: StaticVector.h:1416
const StaticVector & CompositeType
Data type for composite expression templates.
Definition: StaticVector.h:198
StaticVector< Type, N, TF > This
Type of this StaticVector instance.
Definition: StaticVector.h:192
Substitution Failure Is Not An Error (SFINAE) class.The DisableIf class template is an auxiliary tool...
Definition: DisableIf.h:184
void stream(size_t index, const IntrinsicType &value)
Aligned, non-temporal store of an intrinsic element of the vector.
Definition: StaticVector.h:1585
Implementation of a generic iterator for dense vectors and matrices.The DenseIterator represents a ge...
Definition: DenseIterator.h:58
Header file for all intrinsic functionality.
Header file for the mathematical trait.
DenseIterator< const Type > ConstIterator
Iterator over constant elements.
Definition: StaticVector.h:202
Header file for the default transpose flag for all vectors of the Blaze library.
size_t size() const
Returns the current size/dimension of the vector.
Definition: StaticVector.h:1270
IntrinsicTrait< Type > IT
Intrinsic trait for the vector element type.
Definition: StaticVector.h:182
Base class for sparse vectors.The SparseVector class is a base class for all arbitrarily sized (N-dim...
Definition: Forward.h:105
Header file for basic type definitions.
ConstIterator cend() const
Returns an iterator just past the last element of the static vector.
Definition: StaticVector.h:963
IntrinsicType loadu(size_t index) const
Unaligned load of an intrinsic element of the vector.
Definition: StaticVector.h:1491
#define BLAZE_STATIC_ASSERT(expr)
Compile time assertion macro.In case of an invalid compile time expression, a compilation error is cr...
Definition: StaticAssert.h:143
Type * data()
Low-level data access to the vector elements.
Definition: StaticVector.h:856
Type ElementType
Type of the vector elements.
Definition: StaticVector.h:195
#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
void store(float *address, const sse_float_t &value)
Aligned store of a vector of 'float' values.
Definition: Store.h:242
void storeu(size_t index, const IntrinsicType &value)
Unaligned store of an intrinsic element of the vector.
Definition: StaticVector.h:1554