aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen
diff options
context:
space:
mode:
authorGravatar Antonio Sanchez <cantonios@google.com>2021-03-05 14:29:37 -0800
committerGravatar Antonio Sanchez <cantonios@google.com>2021-03-05 14:29:37 -0800
commit60452431412b27517207b002094176a7dc06271c (patch)
tree8026e33d13c22034dd05ca60f1bb397e47aea36b /Eigen
parent1a96d49afe4c2c21e00a975f18f10ca816aa6cb8 (diff)
Revert stack allocation limit change that crept in.
This was accidentally introduced when copying changes between repos.
Diffstat (limited to 'Eigen')
-rw-r--r--Eigen/src/Core/util/Macros.h6
1 files changed, 1 insertions, 5 deletions
diff --git a/Eigen/src/Core/util/Macros.h b/Eigen/src/Core/util/Macros.h
index 252d2be43..2837b7754 100644
--- a/Eigen/src/Core/util/Macros.h
+++ b/Eigen/src/Core/util/Macros.h
@@ -51,11 +51,7 @@
#ifndef EIGEN_STACK_ALLOCATION_LIMIT
// 131072 == 128 KB
-#if defined(__AVX512F__)
- #define EIGEN_STACK_ALLOCATION_LIMIT 0
-#else
- #define EIGEN_STACK_ALLOCATION_LIMIT 16384
-#endif
+#define EIGEN_STACK_ALLOCATION_LIMIT 131072
#endif
//------------------------------------------------------------------------------------------