aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/Core/products
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2015-02-27 22:55:12 +0100
committerGravatar Gael Guennebaud <g.gael@free.fr>2015-02-27 22:55:12 +0100
commit9aee1e300ad523d6bdc45a7592416ce96df9a82f (patch)
tree9ba7399b051086607cf204d7f90227cdd833c0c2 /Eigen/src/Core/products
parentb10cd3afd2ba85d0e8bca68bf0e716391e185837 (diff)
Increase unit-test L1 cache size to ensure we are doing at least 2 peeled loop within product kernel.
Diffstat (limited to 'Eigen/src/Core/products')
-rw-r--r--Eigen/src/Core/products/GeneralBlockPanelKernel.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Eigen/src/Core/products/GeneralBlockPanelKernel.h b/Eigen/src/Core/products/GeneralBlockPanelKernel.h
index 1f57b6de0..0fc7289be 100644
--- a/Eigen/src/Core/products/GeneralBlockPanelKernel.h
+++ b/Eigen/src/Core/products/GeneralBlockPanelKernel.h
@@ -155,7 +155,7 @@ void computeProductBlockingSizes(Index& k, Index& m, Index& n, Index num_threads
// In unit tests we do not want to use extra large matrices,
// so we reduce the cache size to check the blocking strategy is not flawed
#ifdef EIGEN_DEBUG_SMALL_PRODUCT_BLOCKS
- l1 = 4*1024;
+ l1 = 9*1024;
l2 = 32*1024;
l3 = 512*1024;
#endif