projects
/
yosys.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5d29a9f
)
more reasonable numbers for memory
author
Yehowshua Immanuel
<programmed4jesus@gmail.com>
Thu, 4 Jun 2020 21:00:04 +0000
(17:00 -0400)
committer
GitHub
<noreply@github.com>
Thu, 4 Jun 2020 21:00:04 +0000
(17:00 -0400)
backends/smt2/smtio.py
patch
|
blob
|
history
diff --git
a/backends/smt2/smtio.py
b/backends/smt2/smtio.py
index 9d03e162eec74f152da4ce45fdc1a27d49bc6b59..72ab39d396fc4079f370a0c13e6d38de2fe776e8 100644
(file)
--- a/
backends/smt2/smtio.py
+++ b/
backends/smt2/smtio.py
@@
-39,7
+39,7
@@
if os.name == "posix":
smtio_stacksize = 128 * 1024 * 1024
if os.uname().sysname == "Darwin":
# MacOS has rather conservative stack limits
- smtio_stacksize =
16 * 1024 * 512
+ smtio_stacksize =
8 * 1024 * 1024
if current_rlimit_stack[1] != resource.RLIM_INFINITY:
smtio_stacksize = min(smtio_stacksize, current_rlimit_stack[1])
if current_rlimit_stack[0] < smtio_stacksize: