| Technical Specification | ||||
| Filesystem library(filesystem TS) | ||||
| Library fundamentals(library fundamentals TS) | ||||
| Library fundamentals 2(library fundamentals TS v2) | ||||
| Library fundamentals 3(library fundamentals TS v3) | ||||
| Extensions for parallelism(parallelism TS) | ||||
| Extensions for parallelism 2(parallelism TS v2) | ||||
| Extensions for concurrency(concurrency TS) | ||||
| Extensions for concurrency 2(concurrency TS v2) | ||||
| Concepts(concepts TS) | ||||
| Ranges(ranges TS) | ||||
| Reflection(reflection TS) | ||||
| Mathematical special functions(special functions TR) | ||||
| Experimental Non-TS | ||||
| Pattern Matching | ||||
| Linear Algebra | ||||
| std::execution | ||||
| Contracts | ||||
| 2D Graphics |
| Parallel exceptions | ||||
| Additional execution policies | ||||
| Algorithms | ||||
| Task blocks | ||||
| Data-parallel vectors | ||||
Defined in header <experimental/simd> | ||
template<class T,class Abi= simd_abi::compatible<T>> struct simd_size; | (parallelism TS v2) | |
IfT is a vectorizable type andis_abi_tag_v<Abi> istrue, provides the member constantvalue equal to the width (number of elements) ofsimd<T, Abi>, irrespective of whethersimd<T, Abi> is supported or not. For any other typesT andAbi, there is no membervalue.
If the program adds specializations forstd::simd_size orstd::simd_size_v(since C++17), the behavior is undefined.
Contents |
template<class T,class Abi= simd_abi::compatible<T>> constexprstd::size_t simd_size_v= simd_size<T, Abi>::value; | (parallelism TS v2) | |
value [static] | the width ofsimd<T, Abi>(public static member constant) |
operator std::size_t | converts the object tostd::size_t, returnsvalue (public member function) |
operator() (C++14) | returnsvalue (public member function) |
| Type | Definition |
value_type | std::size_t |
type | std::integral_constant<std::size_t, value> |
| This section is incomplete Reason: no example |
[static](parallelism TS v2) | returns the width / number of elements (public static member function of std::experimental::simd<T,Abi>)[edit] |
[static](parallelism TS v2) | returns the width / number of elements (public static member function of std::experimental::simd_mask<T,Abi>)[edit] |