Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 09:48:05

0001 /*
0002 Copyright Charly Chevalier 2015
0003 Copyright Joel Falcou 2015
0004 Distributed under the Boost Software License, Version 1.0.
0005 (See accompanying file LICENSE_1_0.txt or copy at
0006 http://www.boost.org/LICENSE_1_0.txt)
0007 */
0008 
0009 #ifndef BOOST_PREDEF_HARDWARE_SIMD_ARM_VERSIONS_H
0010 #define BOOST_PREDEF_HARDWARE_SIMD_ARM_VERSIONS_H
0011 
0012 #include <boost/predef/version_number.h>
0013 
0014 /* tag::reference[]
0015 = `BOOST_HW_SIMD_ARM_*_VERSION`
0016 
0017 Those defines represent ARM SIMD extensions versions.
0018 
0019 NOTE: You *MUST* compare them with the predef `BOOST_HW_SIMD_ARM`.
0020 */ // end::reference[]
0021 
0022 // ---------------------------------
0023 
0024 /* tag::reference[]
0025 = `BOOST_HW_SIMD_ARM_NEON_VERSION`
0026 
0027 The https://en.wikipedia.org/wiki/ARM_architecture#Advanced_SIMD_.28NEON.29[NEON]
0028 ARM extension version number.
0029 
0030 Version number is: *1.0.0*.
0031 */ // end::reference[]
0032 #define BOOST_HW_SIMD_ARM_NEON_VERSION BOOST_VERSION_NUMBER(1, 0, 0)
0033 
0034 /* tag::reference[]
0035 
0036 */ // end::reference[]
0037 
0038 #endif