1 //===----------------------------------------------------------------------===// 2 // 3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 4 // See https://llvm.org/LICENSE.txt for license information. 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 6 // 7 //===----------------------------------------------------------------------===// 8 9 // UNSUPPORTED: c++98, c++03, c++11, c++14 10 11 // <experimental/simd> 12 // 13 // [simd.class] 14 // simd() = default; 15 16 #include <cstdint> 17 #include <experimental/simd> 18 19 namespace ex = std::experimental::parallelism_v2; 20 21 int main(int, char**) { 22 static_assert(ex::native_simd<int32_t>().size() > 0, ""); 23 static_assert(ex::fixed_size_simd<int32_t, 4>().size() == 4, ""); 24 static_assert(ex::fixed_size_simd<int32_t, 5>().size() == 5, ""); 25 static_assert(ex::fixed_size_simd<int32_t, 1>().size() == 1, ""); 26 static_assert(ex::fixed_size_simd<char, 32>().size() == 32, ""); 27 28 return 0; 29 } 30