versions.h 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. /*
  2. Copyright Charly Chevalier 2015
  3. Copyright Joel Falcou 2015
  4. Distributed under the Boost Software License, Version 1.0.
  5. (See accompanying file LICENSE_1_0.txt or copy at
  6. http://www.boost.org/LICENSE_1_0.txt)
  7. */
  8. #ifndef BOOST_PREDEF_HARDWARE_SIMD_PPC_VERSIONS_H
  9. #define BOOST_PREDEF_HARDWARE_SIMD_PPC_VERSIONS_H
  10. #include <boost/predef/version_number.h>
  11. /*`
  12. Those defines represent Power PC SIMD extensions versions.
  13. [note You *MUST* compare them with the predef `BOOST_HW_SIMD_PPC`.]
  14. */
  15. // ---------------------------------
  16. /*`
  17. [heading `BOOST_HW_SIMD_PPC_VMX_VERSION`]
  18. The [@https://en.wikipedia.org/wiki/AltiVec#VMX128 VMX] powerpc extension
  19. version number.
  20. Version number is: *1.0.0*.
  21. */
  22. #define BOOST_HW_SIMD_PPC_VMX_VERSION BOOST_VERSION_NUMBER(1, 0, 0)
  23. /*`
  24. [heading `BOOST_HW_SIMD_PPC_VSX_VERSION`]
  25. The [@https://en.wikipedia.org/wiki/AltiVec#VSX VSX] powerpc extension version
  26. number.
  27. Version number is: *1.1.0*.
  28. */
  29. #define BOOST_HW_SIMD_PPC_VSX_VERSION BOOST_VERSION_NUMBER(1, 1, 0)
  30. /*`
  31. [heading `BOOST_HW_SIMD_PPC_QPX_VERSION`]
  32. The QPX powerpc extension version number.
  33. Version number is: *2.0.0*.
  34. */
  35. #define BOOST_HW_SIMD_PPC_QPX_VERSION BOOST_VERSION_NUMBER(2, 0, 0)
  36. #endif