1 // -*- C++ -*-
2 //===----------------------------------------------------------------------===//
3 //
4 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
5 // See https://llvm.org/LICENSE.txt for license information.
6 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //
8 //===----------------------------------------------------------------------===//
9 
10 #ifndef _LIBCPP_EXPERIMENTAL___SIMD_DECLARATION_H
11 #define _LIBCPP_EXPERIMENTAL___SIMD_DECLARATION_H
12 
13 #include <experimental/__config>
14 #include <experimental/__simd/abi_tag.h>
15 
16 #if _LIBCPP_STD_VER >= 17 && defined(_LIBCPP_ENABLE_EXPERIMENTAL)
17 
18 _LIBCPP_BEGIN_NAMESPACE_EXPERIMENTAL
19 inline namespace parallelism_v2 {
20 
21 template <class _Tp, class _Abi = simd_abi::compatible<_Tp>>
22 class simd;
23 
24 template <class _Tp, class _Abi = simd_abi::compatible<_Tp>>
25 class simd_mask;
26 
27 } // namespace parallelism_v2
28 _LIBCPP_END_NAMESPACE_EXPERIMENTAL
29 
30 #endif // _LIBCPP_STD_VER >= 17 && defined(_LIBCPP_ENABLE_EXPERIMENTAL)
31 #endif // _LIBCPP_EXPERIMENTAL___SIMD_DECLARATION_H
32