• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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++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 #include "test_macros.h"
20 
21 namespace ex = std::experimental::parallelism_v2;
22 
main(int,char **)23 int main(int, char**) {
24   static_assert(ex::native_simd<int32_t>().size() > 0, "");
25   static_assert(ex::fixed_size_simd<int32_t, 4>().size() == 4, "");
26   static_assert(ex::fixed_size_simd<int32_t, 5>().size() == 5, "");
27   static_assert(ex::fixed_size_simd<int32_t, 1>().size() == 1, "");
28   static_assert(ex::fixed_size_simd<char, 32>().size() == 32, "");
29 
30   return 0;
31 }
32