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_X86_AMD_VERSIONS_H
0010 #define BOOST_PREDEF_HARDWARE_SIMD_X86_AMD_VERSIONS_H
0011 
0012 #include <boost/predef/version_number.h>
0013 
0014 /* tag::reference[]
0015 = `BOOST_HW_SIMD_X86_AMD_*_VERSION`
0016 
0017 Those defines represent x86 (AMD specific) SIMD extensions versions.
0018 
0019 NOTE: You *MUST* compare them with the predef `BOOST_HW_SIMD_X86_AMD`.
0020 */ // end::reference[]
0021 
0022 
0023 // ---------------------------------
0024 
0025 /* tag::reference[]
0026 = `BOOST_HW_SIMD_X86_AMD_SSE4A_VERSION`
0027 
0028 https://en.wikipedia.org/wiki/SSE4##SSE4A[SSE4A] x86 extension (AMD specific).
0029 
0030 Version number is: *4.0.0*.
0031 */ // end::reference[]
0032 #define BOOST_HW_SIMD_X86_AMD_SSE4A_VERSION BOOST_VERSION_NUMBER(4, 0, 0)
0033 
0034 /* tag::reference[]
0035 = `BOOST_HW_SIMD_X86_AMD_FMA4_VERSION`
0036 
0037 https://en.wikipedia.org/wiki/FMA_instruction_set#FMA4_instruction_set[FMA4] x86 extension (AMD specific).
0038 
0039 Version number is: *5.1.0*.
0040 */ // end::reference[]
0041 #define BOOST_HW_SIMD_X86_AMD_FMA4_VERSION BOOST_VERSION_NUMBER(5, 1, 0)
0042 
0043 /* tag::reference[]
0044 = `BOOST_HW_SIMD_X86_AMD_XOP_VERSION`
0045 
0046 https://en.wikipedia.org/wiki/XOP_instruction_set[XOP] x86 extension (AMD specific).
0047 
0048 Version number is: *5.1.1*.
0049 */ // end::reference[]
0050 #define BOOST_HW_SIMD_X86_AMD_XOP_VERSION BOOST_VERSION_NUMBER(5, 1, 1)
0051 
0052 /* tag::reference[]
0053 
0054 */ // end::reference[]
0055 
0056 #endif