blob: 3670199ef3e9adbf053bd6e16159dfff9fd35a74 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
|
// SPDX-License-Identifier: Apache-2.0
//
// Copyright 2008-2016 Conrad Sanderson (http://conradsanderson.id.au)
// Copyright 2008-2016 National ICT Australia (NICTA)
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
// ------------------------------------------------------------------------
//! \addtogroup arma_config
//! @{
struct arma_config
{
#if defined(ARMA_MAT_PREALLOC)
static constexpr uword mat_prealloc = (sword(ARMA_MAT_PREALLOC) > 0) ? uword(ARMA_MAT_PREALLOC) : 1;
#else
static constexpr uword mat_prealloc = 16;
#endif
#if defined(ARMA_OPENMP_THRESHOLD)
static constexpr uword mp_threshold = (sword(ARMA_OPENMP_THRESHOLD) > 0) ? uword(ARMA_OPENMP_THRESHOLD) : 320;
#else
static constexpr uword mp_threshold = 320;
#endif
#if defined(ARMA_OPENMP_THREADS)
static constexpr uword mp_threads = (sword(ARMA_OPENMP_THREADS) > 0) ? uword(ARMA_OPENMP_THREADS) : 8;
#else
static constexpr uword mp_threads = 8;
#endif
#if defined(ARMA_OPTIMISE_BAND)
static constexpr bool optimise_band = true;
#else
static constexpr bool optimise_band = false;
#endif
#if defined(ARMA_OPTIMISE_SYM)
static constexpr bool optimise_sym = true;
#else
static constexpr bool optimise_sym = false;
#endif
#if defined(ARMA_OPTIMISE_INVEXPR)
static constexpr bool optimise_invexpr = true;
#else
static constexpr bool optimise_invexpr = false;
#endif
#if defined(ARMA_CHECK_NONFINITE)
static constexpr bool check_nonfinite = true;
#else
static constexpr bool check_nonfinite = false;
#endif
#if defined(ARMA_USE_LAPACK)
static constexpr bool lapack = true;
#else
static constexpr bool lapack = false;
#endif
#if defined(ARMA_USE_BLAS)
static constexpr bool blas = true;
#else
static constexpr bool blas = false;
#endif
#if defined(ARMA_USE_ATLAS)
static constexpr bool atlas = true;
#else
static constexpr bool atlas = false;
#endif
#if defined(ARMA_USE_NEWARP)
static constexpr bool newarp = true;
#else
static constexpr bool newarp = false;
#endif
#if defined(ARMA_USE_ARPACK)
static constexpr bool arpack = true;
#else
static constexpr bool arpack = false;
#endif
#if defined(ARMA_USE_SUPERLU)
static constexpr bool superlu = true;
#else
static constexpr bool superlu = false;
#endif
#if defined(ARMA_USE_HDF5)
static constexpr bool hdf5 = true;
#else
static constexpr bool hdf5 = false;
#endif
#if defined(ARMA_NO_DEBUG)
static constexpr bool debug = false;
#else
static constexpr bool debug = true;
#endif
#if defined(ARMA_EXTRA_DEBUG)
static constexpr bool extra_debug = true;
#else
static constexpr bool extra_debug = false;
#endif
#if defined(ARMA_GOOD_COMPILER)
static constexpr bool good_comp = true;
#else
static constexpr bool good_comp = false;
#endif
#if ( \
defined(ARMA_EXTRA_MAT_PROTO) || defined(ARMA_EXTRA_MAT_MEAT) \
|| defined(ARMA_EXTRA_COL_PROTO) || defined(ARMA_EXTRA_COL_MEAT) \
|| defined(ARMA_EXTRA_ROW_PROTO) || defined(ARMA_EXTRA_ROW_MEAT) \
|| defined(ARMA_EXTRA_CUBE_PROTO) || defined(ARMA_EXTRA_CUBE_MEAT) \
|| defined(ARMA_EXTRA_FIELD_PROTO) || defined(ARMA_EXTRA_FIELD_MEAT) \
|| defined(ARMA_EXTRA_SPMAT_PROTO) || defined(ARMA_EXTRA_SPMAT_MEAT) \
|| defined(ARMA_EXTRA_SPCOL_PROTO) || defined(ARMA_EXTRA_SPCOL_MEAT) \
|| defined(ARMA_EXTRA_SPROW_PROTO) || defined(ARMA_EXTRA_SPROW_MEAT) \
|| defined(ARMA_ALIEN_MEM_ALLOC_FUNCTION) \
|| defined(ARMA_ALIEN_MEM_FREE_FUNCTION) \
)
static constexpr bool extra_code = true;
#else
static constexpr bool extra_code = false;
#endif
#if defined(ARMA_HAVE_CXX14)
static constexpr bool cxx14 = true;
#else
static constexpr bool cxx14 = false;
#endif
#if defined(ARMA_HAVE_CXX17)
static constexpr bool cxx17 = true;
#else
static constexpr bool cxx17 = false;
#endif
#if defined(ARMA_HAVE_CXX20)
static constexpr bool cxx20 = true;
#else
static constexpr bool cxx20 = false;
#endif
#if (!defined(ARMA_DONT_USE_STD_MUTEX))
static constexpr bool std_mutex = true;
#else
static constexpr bool std_mutex = false;
#endif
#if (defined(_POSIX_C_SOURCE) && (_POSIX_C_SOURCE >= 200112L))
static constexpr bool posix = true;
#else
static constexpr bool posix = false;
#endif
#if defined(ARMA_USE_WRAPPER)
static constexpr bool wrapper = true;
#else
static constexpr bool wrapper = false;
#endif
#if defined(ARMA_USE_OPENMP)
static constexpr bool openmp = true;
#else
static constexpr bool openmp = false;
#endif
#if defined(ARMA_USE_FORTRAN_HIDDEN_ARGS)
static constexpr bool hidden_args = true;
#else
static constexpr bool hidden_args = false;
#endif
#if defined(ARMA_DONT_ZERO_INIT)
static constexpr bool zero_init = false;
#else
static constexpr bool zero_init = true;
#endif
#if defined(ARMA_FAST_MATH)
static constexpr bool fast_math = true;
#else
static constexpr bool fast_math = false;
#endif
#if defined(ARMA_FAST_MATH) && !defined(ARMA_DONT_PRINT_FAST_MATH_WARNING)
static constexpr bool fast_math_warn = true;
#else
static constexpr bool fast_math_warn = false;
#endif
#if (!defined(ARMA_DONT_TREAT_TEXT_AS_BINARY))
static constexpr bool text_as_binary = true;
#else
static constexpr bool text_as_binary = false;
#endif
static constexpr uword warn_level = (sword(ARMA_WARN_LEVEL) > 0) ? uword(ARMA_WARN_LEVEL) : 0;
};
//! @}
|