versions.h 935 B

1234567891011121314151617181920212223242526272829303132333435363738
  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_ARM_VERSIONS_H
  9. #define BOOST_PREDEF_HARDWARE_SIMD_ARM_VERSIONS_H
  10. #include <boost/predef/version_number.h>
  11. /* tag::reference[]
  12. = `BOOST_HW_SIMD_ARM_*_VERSION`
  13. Those defines represent ARM SIMD extensions versions.
  14. NOTE: You *MUST* compare them with the predef `BOOST_HW_SIMD_ARM`.
  15. */ // end::reference[]
  16. // ---------------------------------
  17. /* tag::reference[]
  18. = `BOOST_HW_SIMD_ARM_NEON_VERSION`
  19. The https://en.wikipedia.org/wiki/ARM_architecture#Advanced_SIMD_.28NEON.29[NEON]
  20. ARM extension version number.
  21. Version number is: *1.0.0*.
  22. */ // end::reference[]
  23. #define BOOST_HW_SIMD_ARM_NEON_VERSION BOOST_VERSION_NUMBER(1, 0, 0)
  24. /* tag::reference[]
  25. */ // end::reference[]
  26. #endif