Eigen  3.4.90 (git rev 5a9f66fb35d03a4da9ef8976e67a61b30aa16dcf)
 
Loading...
Searching...
No Matches
Settings.h
1// This file is part of Eigen, a lightweight C++ template library
2// for linear algebra.
3//
4// Copyright (C) 2008-2010 Gael Guennebaud <[email protected]>
5// Copyright (C) 2006-2008 Benoit Jacob <[email protected]>
6//
7// This Source Code Form is subject to the terms of the Mozilla
8// Public License v. 2.0. If a copy of the MPL was not distributed
9// with this file, You can obtain one at http://mozilla.org/MPL/2.0/.
10
11/* All the parameters defined in this file can be specialized in the
12 * architecture specific files, and/or by the user.
13 * More to come... */
14
15#ifndef EIGEN_DEFAULT_SETTINGS_H
16#define EIGEN_DEFAULT_SETTINGS_H
17
22#ifndef EIGEN_UNROLLING_LIMIT
23#define EIGEN_UNROLLING_LIMIT 110
24#endif
25
29#ifndef EIGEN_CACHEFRIENDLY_PRODUCT_THRESHOLD
30#define EIGEN_CACHEFRIENDLY_PRODUCT_THRESHOLD 8
31#endif
32
36#ifndef EIGEN_TUNE_TRIANGULAR_PANEL_WIDTH
37#define EIGEN_TUNE_TRIANGULAR_PANEL_WIDTH 8
38#endif
39
43#ifndef EIGEN_ARCH_DEFAULT_NUMBER_OF_REGISTERS
44#define EIGEN_ARCH_DEFAULT_NUMBER_OF_REGISTERS 8
45#endif
46
47#endif // EIGEN_DEFAULT_SETTINGS_H