Revert stack allocation limit change that crept in.

This was accidentally introduced when copying changes between repos.
This commit is contained in:
Antonio Sanchez 2021-03-05 14:29:37 -08:00
parent 1a96d49afe
commit 6045243141

View File

@ -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
//------------------------------------------------------------------------------------------