Simplify compiling GPU code for tests
[gromacs.git] / src / gromacs / utility / real.h
blob2a959637a195a04ca2ad44f1b9aafff659c8ed93
1 /*
2 * This file is part of the GROMACS molecular simulation package.
4 * Copyright (c) 1991-2000, University of Groningen, The Netherlands.
5 * Copyright (c) 2001-2004, The GROMACS development team.
6 * Copyright (c) 2013,2014,2015,2017,2018 by the GROMACS development team.
7 * Copyright (c) 2019,2020, by the GROMACS development team, led by
8 * Mark Abraham, David van der Spoel, Berk Hess, and Erik Lindahl,
9 * and including many others, as listed in the AUTHORS file in the
10 * top-level source directory and at http://www.gromacs.org.
12 * GROMACS is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU Lesser General Public License
14 * as published by the Free Software Foundation; either version 2.1
15 * of the License, or (at your option) any later version.
17 * GROMACS is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
20 * Lesser General Public License for more details.
22 * You should have received a copy of the GNU Lesser General Public
23 * License along with GROMACS; if not, see
24 * http://www.gnu.org/licenses, or write to the Free Software Foundation,
25 * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
27 * If you want to redistribute modifications to GROMACS, please
28 * consider that scientific software is very special. Version
29 * control is crucial - bugs must be traceable. We will be happy to
30 * consider code for inclusion in the official distribution, but
31 * derived work must not be called official GROMACS. Details are found
32 * in the README & COPYING files - if they are missing, get the
33 * official version at http://www.gromacs.org.
35 * To help us fund GROMACS development, we humbly ask that you cite
36 * the research papers on the package. Check out http://www.gromacs.org.
38 /*! \file
39 * \brief
40 * Declares `real` and related constants.
42 * \inpublicapi
43 * \ingroup module_utility
45 #ifndef GMX_UTILITY_REAL_H
46 #define GMX_UTILITY_REAL_H
48 /*! \brief Double precision accuracy */
49 #define GMX_DOUBLE_EPS 2.2204460492503131e-16
51 /*! \brief Maximum double precision value - reduced 1 unit in last digit for MSVC */
52 #define GMX_DOUBLE_MAX 1.7976931348623157e+308
54 /*! \brief Minimum double precision value */
55 #define GMX_DOUBLE_MIN 2.2250738585072014e-308
57 /*! \brief Single precision accuracy */
58 #define GMX_FLOAT_EPS 1.19209290e-07F
60 /*! \brief Maximum single precision value - reduced 1 unit in last digit for MSVC */
61 #define GMX_FLOAT_MAX 3.40282346E+38F
63 /*! \brief Minimum single precision value */
64 #define GMX_FLOAT_MIN 1.175494351E-38F
66 #ifdef __PGI
67 /* The portland group x86 C/C++ compilers do not treat negative zero initializers
68 * correctly, but "optimizes" them to positive zero, so we implement it explicitly.
69 * These constructs are optimized to simple loads at compile time. If you want to
70 * use them on other compilers those have to support gcc preprocessor extensions.
71 * Note: These initializers might be sensitive to the endianness (which can
72 * be different for byte and word order), so check that it works for your platform
73 * and add a separate section if necessary before adding to the ifdef above.
75 # define GMX_DOUBLE_NEGZERO \
76 ({ \
77 const union { \
78 int di[2]; \
79 double d; \
80 } _gmx_dzero = { 0, -2147483648 }; \
81 _gmx_dzero.d; \
83 # define GMX_FLOAT_NEGZERO \
84 ({ \
85 const union { \
86 int fi; \
87 float f; \
88 } _gmx_fzero = { -2147483648 }; \
89 _gmx_fzero.f; \
91 #else
92 /*! \brief Negative zero in double */
93 # define GMX_DOUBLE_NEGZERO (-0.0)
95 /*! \brief Negative zero in float */
96 # define GMX_FLOAT_NEGZERO (-0.0F)
97 #endif
99 /*! \typedef real
100 * \brief Precision-dependent \Gromacs floating-point type.
102 /*! \def HAVE_REAL
103 * \brief Used to check whether `real` is already defined.
105 /*! \def GMX_MPI_REAL
106 * \brief MPI data type for `real`.
108 /*! \def GMX_REAL_EPS
109 * \brief Accuracy for `real`.
111 /*! \def GMX_REAL_MIN
112 * \brief Smallest non-zero value for `real`.
114 /*! \def GMX_REAL_MAX
115 * \brief Largest finite value for `real`.
117 /*! \def GMX_REAL_NEGZERO
118 * \brief Negative zero for `real`.
120 /*! \def gmx_real_fullprecision_pfmt
121 * \brief Format string for full `real` precision.
123 /*! \def GMX_FLOAT_MAX_SIMD_WIDTH
124 * \brief The maximum supported number of `float` elements in a SIMD register.
126 /*! \def GMX_DOUBLE_MAX_SIMD_WIDTH
127 * \brief The maximum supported number of `double` elements in a SIMD register.
129 /*! \def GMX_REAL_MAX_SIMD_WIDTH
130 * \brief The maximum supported number of `real` elements in a SIMD register.
133 #define GMX_FLOAT_MAX_SIMD_WIDTH 16
134 #define GMX_DOUBLE_MAX_SIMD_WIDTH 8
136 #if GMX_DOUBLE
138 # ifndef HAVE_REAL
139 typedef double real;
140 # define HAVE_REAL
141 # endif
143 # define GMX_MPI_REAL MPI_DOUBLE
144 # define GMX_REAL_EPS GMX_DOUBLE_EPS
145 # define GMX_REAL_MIN GMX_DOUBLE_MIN
146 # define GMX_REAL_MAX GMX_DOUBLE_MAX
147 # define GMX_REAL_NEGZERO GMX_DOUBLE_NEGZERO
148 # define gmx_real_fullprecision_pfmt "%21.14e"
149 # define GMX_REAL_MAX_SIMD_WIDTH GMX_DOUBLE_MAX_SIMD_WIDTH
151 #else /* GMX_DOUBLE */
153 # ifndef HAVE_REAL
154 typedef float real;
155 # define HAVE_REAL
156 # endif
158 # define GMX_MPI_REAL MPI_FLOAT
159 # define GMX_REAL_EPS GMX_FLOAT_EPS
160 # define GMX_REAL_MIN GMX_FLOAT_MIN
161 # define GMX_REAL_MAX GMX_FLOAT_MAX
162 # define GMX_REAL_NEGZERO GMX_FLOAT_NEGZERO
163 # define gmx_real_fullprecision_pfmt "%14.7e"
164 # define GMX_REAL_MAX_SIMD_WIDTH GMX_FLOAT_MAX_SIMD_WIDTH
166 #endif /* GMX_DOUBLE */
168 /*! \brief User defined literal for real numbers.
170 * Examples: 2._real, 2.5_real, .5_real. The number is always of type real.
172 * It is best to use a real constant whenever it is used only with operands which are real.
173 * If a constant is double than the compiler is forced to do operations directly involving the
174 * constant in double even if all variables are real. A constant shouldn't be real when used with
175 * double operands, because then the constant is less accurate with GMX_DOUBLE=no.
177 * See https://en.cppreference.com/w/cpp/language/user_literal for details on this lanuage feature.
179 constexpr real operator"" _real(long double x)
181 return real(x);
184 #endif