internal_declaration.h 1.1 KB

12345678910111213141516171819202122232425262728293031323334
  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_INTERNAL_DECLARATION_H
  10. #define _LIBCPP_EXPERIMENTAL___SIMD_INTERNAL_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>
  15. struct __simd_storage;
  16. template <class _Tp, class _Abi>
  17. struct __mask_storage;
  18. template <class _Tp, class _Abi>
  19. struct __simd_operations;
  20. template <class _Tp, class _Abi>
  21. struct __mask_operations;
  22. } // namespace parallelism_v2
  23. _LIBCPP_END_NAMESPACE_EXPERIMENTAL
  24. #endif // _LIBCPP_STD_VER >= 17 && defined(_LIBCPP_ENABLE_EXPERIMENTAL)
  25. #endif // _LIBCPP_EXPERIMENTAL___SIMD_INTERNAL_DECLARATION_H