diff options
Diffstat (limited to 'Eigen/src/Core/util/Macros.h')
-rw-r--r-- | Eigen/src/Core/util/Macros.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Eigen/src/Core/util/Macros.h b/Eigen/src/Core/util/Macros.h index bb73b03cc..0cc5ae9aa 100644 --- a/Eigen/src/Core/util/Macros.h +++ b/Eigen/src/Core/util/Macros.h @@ -94,11 +94,11 @@ #define EIGEN_TUNE_FOR_CPU_CACHE_SIZE (sizeof(float)*256*256) #endif -/** Defines the maximal width of the blocks used in the triangular solver - * for vectors (level 2 blas xTRSV). The default is 8. +/** Defines the maximal width of the blocks used in the triangular product and solver + * for vectors (level 2 blas xTRMV and xTRSV). The default is 8. */ -#ifndef EIGEN_TUNE_TRSV_PANEL_WIDTH -#define EIGEN_TUNE_TRSV_PANEL_WIDTH 8 +#ifndef EIGEN_TUNE_TRIANGULAR_PANEL_WIDTH +#define EIGEN_TUNE_TRIANGULAR_PANEL_WIDTH 8 #endif /** Allows to disable some optimizations which might affect the accuracy of the result. |