declaration.h 968 B

12345678910111213141516171819202122232425262728
  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. #ifndef _LIBCPP_EXPERIMENTAL___SIMD_DECLARATION_H
  10. #define _LIBCPP_EXPERIMENTAL___SIMD_DECLARATION_H
  11. #if _LIBCPP_STD_VER >= 17 && defined(_LIBCPP_ENABLE_EXPERIMENTAL)
  12. _LIBCPP_BEGIN_NAMESPACE_EXPERIMENTAL
  13. inline namespace parallelism_v2 {
  14. template <class _Tp, class _Abi = simd_abi::compatible<_Tp>>
  15. class simd;
  16. template <class _Tp, class _Abi = simd_abi::compatible<_Tp>>
  17. class simd_mask;
  18. } // namespace parallelism_v2
  19. _LIBCPP_END_NAMESPACE_EXPERIMENTAL
  20. #endif // _LIBCPP_STD_VER >= 17 && defined(_LIBCPP_ENABLE_EXPERIMENTAL)
  21. #endif // _LIBCPP_EXPERIMENTAL___SIMD_DECLARATION_H