arma_config.hpp (armadillo-10.8.2.tar.xz) | : | arma_config.hpp (armadillo-11.0.0.tar.xz) | ||
---|---|---|---|---|
skipping to change at line 41 | skipping to change at line 41 | |||
#else | #else | |||
static constexpr uword mp_threshold = 320; | static constexpr uword mp_threshold = 320; | |||
#endif | #endif | |||
#if defined(ARMA_OPENMP_THREADS) | #if defined(ARMA_OPENMP_THREADS) | |||
static constexpr uword mp_threads = (sword(ARMA_OPENMP_THREADS) > 0) ? uword (ARMA_OPENMP_THREADS) : 8; | static constexpr uword mp_threads = (sword(ARMA_OPENMP_THREADS) > 0) ? uword (ARMA_OPENMP_THREADS) : 8; | |||
#else | #else | |||
static constexpr uword mp_threads = 8; | static constexpr uword mp_threads = 8; | |||
#endif | #endif | |||
#if defined(ARMA_USE_ATLAS) | #if defined(ARMA_OPTIMISE_BAND) | |||
static constexpr bool atlas = true; | static constexpr bool optimise_band = true; | |||
#else | #else | |||
static constexpr bool atlas = false; | static constexpr bool optimise_band = false; | |||
#endif | ||||
#if defined(ARMA_OPTIMISE_SYMPD) | ||||
static constexpr bool optimise_sympd = true; | ||||
#else | ||||
static constexpr bool optimise_sympd = 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 | #endif | |||
#if defined(ARMA_USE_LAPACK) | #if defined(ARMA_USE_LAPACK) | |||
static constexpr bool lapack = true; | static constexpr bool lapack = true; | |||
#else | #else | |||
static constexpr bool lapack = false; | static constexpr bool lapack = false; | |||
#endif | #endif | |||
#if defined(ARMA_USE_BLAS) | #if defined(ARMA_USE_BLAS) | |||
static constexpr bool blas = true; | static constexpr bool blas = true; | |||
#else | #else | |||
static constexpr bool blas = false; | static constexpr bool blas = false; | |||
#endif | #endif | |||
#if defined(ARMA_USE_ATLAS) | ||||
static constexpr bool atlas = true; | ||||
#else | ||||
static constexpr bool atlas = false; | ||||
#endif | ||||
#if defined(ARMA_USE_NEWARP) | #if defined(ARMA_USE_NEWARP) | |||
static constexpr bool newarp = true; | static constexpr bool newarp = true; | |||
#else | #else | |||
static constexpr bool newarp = false; | static constexpr bool newarp = false; | |||
#endif | #endif | |||
#if defined(ARMA_USE_ARPACK) | #if defined(ARMA_USE_ARPACK) | |||
static constexpr bool arpack = true; | static constexpr bool arpack = true; | |||
#else | #else | |||
static constexpr bool arpack = false; | static constexpr bool arpack = false; | |||
End of changes. 3 change blocks. | ||||
3 lines changed or deleted | 27 lines changed or added |