diff options
author | Liam <byteslice@airmail.cc> | 2023-12-19 15:24:13 -0500 |
---|---|---|
committer | Liam <byteslice@airmail.cc> | 2023-12-19 15:24:13 -0500 |
commit | 93c19a40bf9b999ad15c66a4afba9bfb0479ba4f (patch) | |
tree | b1b3922a8d0d3048db7198b2918332a413517e09 /src/core | |
parent | a94721fde0eb716e6c70da285a320b9b96c0c292 (diff) |
nce: increase handler stack size
Diffstat (limited to 'src/core')
-rw-r--r-- | src/core/arm/nce/arm_nce.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/arm/nce/arm_nce.cpp b/src/core/arm/nce/arm_nce.cpp index 1311e66a9..123b3da7e 100644 --- a/src/core/arm/nce/arm_nce.cpp +++ b/src/core/arm/nce/arm_nce.cpp @@ -39,7 +39,7 @@ fpsimd_context* GetFloatingPointState(mcontext_t& host_ctx) { } using namespace Common::Literals; -constexpr u32 StackSize = 32_KiB; +constexpr u32 StackSize = 128_KiB; } // namespace |