Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-12-16 09:44:41

0001 //  (C) Copyright Noel Belcourt 2007.
0002 //  Copyright 2017, NVIDIA CORPORATION.
0003 //  Use, modification and distribution are subject to the
0004 //  Boost Software License, Version 1.0. (See accompanying file
0005 //  LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
0006 
0007 //  See http://www.boost.org for most recent version.
0008 
0009 //  PGI C++ compiler setup:
0010 
0011 #define BOOST_COMPILER_VERSION __PGIC__##__PGIC_MINOR__
0012 #define BOOST_COMPILER "PGI compiler version " BOOST_STRINGIZE(BOOST_COMPILER_VERSION)
0013 
0014 // PGI is mostly GNU compatible.  So start with that.
0015 #include <boost/config/compiler/gcc.hpp>
0016 
0017 // Now adjust for things that are different.
0018 
0019 // __float128 is a typedef, not a distinct type.
0020 #undef BOOST_HAS_FLOAT128
0021 
0022 // __int128 is not supported.
0023 #undef BOOST_HAS_INT128