28 #ifndef VC_COMMON_VECTOR_H_
29 #define VC_COMMON_VECTOR_H_
32 #include "elementreference.h"
34 #include "vectorabi.h"
35 #include "vectortraits.h"
36 #include "simdarrayfwd.h"
37 #include "loadstoreflags.h"
38 #include "writemaskedvector.h"
40 namespace Vc_VERSIONED_NAMESPACE
53 template <
typename T,
typename Abi,
54 typename = enable_if<std::is_floating_point<T>::value>>
90 template <
typename T,
typename Abi,
91 typename = enable_if<std::is_floating_point<T>::value>>
101 template <
typename T,
typename Abi>
121 template<
typename T,
typename Abi = VectorAbi::Best<T>>
class Vector
138 static constexpr
size_t size() {
return VectorTraits<T, Abi>::size(); }
150 using EntryType =
typename VectorTraits<T, Abi>::EntryType;
154 using VectorEntryType =
typename VectorTraits<T, Abi>::VectorEntryType;
158 using VectorType =
typename VectorTraits<T, Abi>::VectorType;
162 using vector_type = VectorType;
177 using reference = Detail::ElementReference<Vector>;
209 static inline Vector Random();
212 template <
typename G>
static inline Vector generate(G gen);
226 inline Vector() =
default;
233 explicit inline Vector(VectorSpecialInitializerZero);
240 explicit inline Vector(VectorSpecialInitializerOne);
247 explicit inline Vector(VectorSpecialInitializerIndexesFromZero);
255 template <
typename U>
257 enable_if<Traits::is_implicit_cast_allowed<U, T>::value> = nullarg);
270 template <
typename U>
271 Vc_DEPRECATED(
"use simd_cast instead of explicit type casting to convert between "
272 "vector types") inline explicit
Vector(
274 enable_if<!Traits::is_implicit_cast_allowed<U, T>::value> = nullarg);
285 template <
typename U>
286 inline Vector(U a, enable_if<std::is_same<U, int>::value &&
287 !std::is_same<U, EntryType>::value> = nullarg);
293 #include "../common/loadinterface.h"
295 #include "../common/storeinterface.h"
301 inline void setZero();
319 inline void setZeroInverted(
MaskType mask);
324 inline void setQnan();
333 #define Vc_CURRENT_CLASS_NAME Vector
334 #include "../common/gatherinterface.h"
335 #include "../common/scatterinterface.h"
336 #undef Vc_CURRENT_CLASS_NAME
356 inline reference operator[](
size_t index) noexcept;
365 inline EntryType operator[](
size_t index)
const noexcept;
384 inline Vector operator~()
const;
402 inline Vector &operator++();
404 inline Vector operator++(
int);
405 inline Vector &operator--();
406 inline Vector operator--(
int);
409 #define Vc_OP(symbol) \
410 inline Vc_PURE Vector operator symbol(const Vector &x) const;
436 Vc_ALL_ARITHMETICS(Vc_OP);
458 Vc_ALL_BINARY(Vc_OP);
479 Vc_ALL_SHIFTS(Vc_OP);
501 #define Vc_CMP_OP(symbol) inline Vc_PURE MaskType operator symbol(const Vector &x) const;
503 Vc_ALL_COMPARES(Vc_CMP_OP);
526 inline Common::WriteMaskedVector<Vector, MaskType> operator()(
MaskType mask);
553 inline Vector partialSum()
const;
633 inline Vector rotated(
int amount)
const;
635 inline Vector reversed()
const;
668 inline Vector sorted()
const;
701 template <
typename F>
void callWithValuesSorted(F &&f);
703 template <
typename F>
inline void call(F &&f)
const;
705 template <
typename F>
inline void call(F &&f,
MaskType mask)
const;
708 template <
typename F>
inline Vector apply(F &&f)
const;
710 template <
typename F>
inline Vector apply(F &&f,
MaskType mask)
const;
713 template <
typename IndexT>
inline void fill(
EntryType(&f)(IndexT));
739 inline VectorType &data();
741 inline const VectorType &data()
const;
754 Vc_DEPRECATED(
"use exponent(x) instead") inline
Vector exponent() const;
767 static constexpr
size_t Size = VectorTraits<T, Abi>::size();
776 template <typename V2> inline V2 staticCast() const;
785 template <typename V2>
787 reinterpretCast() const;
799 Vc_DEPRECATED("use copysign(x, y) instead") inline
Vector
800 copySign(
Vector reference) const;
803 Vc_FREE_STORE_OPERATORS_ALIGNED(alignof(
Vector));
827 template <typename V, typename T, typename Abi>
828 Vc_ALWAYS_INLINE Vc_CONST enable_if<
829 (V::size() == Vector<T, Abi>::size() &&
830 sizeof(typename V::VectorEntryType) ==
831 sizeof(typename Vector<T, Abi>::VectorEntryType) &&
832 sizeof(V) == sizeof(Vector<T, Abi>) && alignof(V) <= alignof(Vector<T, Abi>)),
836 return reinterpret_cast<const V &
>(x);
839 #define Vc_OP(symbol) \
840 template <typename T, typename Abi> \
841 inline Vector<T, Abi> &operator symbol##=(Vector<T, Abi> &, \
842 const Vector<T, Abi> &x);
850 #endif // VC_COMMON_VECTOR_H_
static constexpr size_t size()
Returns the number of scalar components ( ) in a vector of this type.
The main vector class for expressing data parallelism.
constexpr VectorSpecialInitializerIndexesFromZero IndexesFromZero
The special object Vc::IndexesFromZero can be used to construct Vector objects initialized to values ...
Vc::Vector< T > min(const Vc::Vector< T > &x, const Vc::Vector< T > &y)
result_vector_type< L, R > operator-(L &&lhs, R &&rhs)
Applies - component-wise and concurrently.
Vc::Vector< T > max(const Vc::Vector< T > &x, const Vc::Vector< T > &y)
Data-parallel arithmetic type with user-defined number of elements.
Abi abi
The ABI tag type of the current template instantiation.
Vector< T, Abi > exponent(Vector< T, Abi > x)
Extracts the exponent of each floating-point vector component.
enable_if< (V::size()==Vector< T, Abi >::size()&&sizeof(typename V::VectorEntryType)==sizeof(typename Vector< T, Abi >::VectorEntryType)&&sizeof(V)==sizeof(Vector< T, Abi >)&&alignof(V)<=alignof(Vector< T, Abi >)), V > reinterpret_components_cast(const Vector< T, Abi > &x)
Constructs a new Vector object of type V from the Vector x, reinterpreting the bits of x for the new ...
result_vector_type< L, R > operator+(L &&lhs, R &&rhs)
Applies + component-wise and concurrently.
static constexpr std::size_t size()
Returns N, the number of scalar components in an object of this type.
Vector< T, Abi > copysign(Vector< T, Abi > magnitude, Vector< T, Abi > sign)
Copies the sign(s) of sign to the value(s) in magnitude and returns the resulting vector...
EntryType value_type
The type of the entries in the vector.
void assign(Adapter< S, T, N > &a, size_t i, const S &x)
Assigns one scalar object x to a SIMD slot at offset i in the simdized object a.
Vector< T, Abi >::MaskType isnegative(Vector< T, Abi > x)
Returns for each vector component whether it stores a negative value.
The main SIMD mask class.
constexpr VectorSpecialInitializerZero Zero
The special object Vc::Zero can be used to construct Vector and Mask objects initialized to zero/fals...
Adapter< S, T, N > shifted(const Adapter< S, T, N > &a, int shift)
Returns a new vectorized object where each entry is shifted by shift.
constexpr VectorSpecialInitializerOne One
The special object Vc::One can be used to construct Vector and Mask objects initialized to one/true...
Vector(const S1 *array, const S2 S1::*member1, const EntryType S2::*member2, IT indexes)
constexpr std::size_t MemoryAlignment
Specifies the most conservative memory alignment necessary for aligned loads and stores of Vector typ...
typename VectorTraits< T, Abi >::EntryType EntryType
The type of the entries in the vector.