-
Notifications
You must be signed in to change notification settings - Fork 50
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Document (or fix) stack safety issues #194
Comments
I would prefer that we test with lists which are large enough to blow the stack than shrink the stack artificially, as we ideally ought to be testing with large inputs anyway, e.g. so that we are more likely to notice if we make a change which unintentionally makes some functions much slower for large inputs. |
From Data.List.Lazy
purescript-lists/src/Data/List/Lazy.purs Lines 317 to 327 in 6383c4f
|
|
It appears that |
Yeah, seems so - purescript-lists/src/Data/List/Types.purs Lines 165 to 167 in 68bce83
|
Some example of existing stack-unsafe functions:
sort
- reported in sort and sortBy are not stack safe #192nubEq
, can be fixed for strict lists by applying same strategy used for structnub
in Match nub* functions with Array #179nub
for lazy lists. Don't know of a good way to fix this. The strictnub
strategy of Match nub* functions with Array #179 cannot be applied here because you can'treverse
an infinite lazy list.We should ideally setup stack-safety tests for every function. To help make those tests run faster, we could shrink the v8 stack size with something like
--stack_size=10
(default is 984 kB).The text was updated successfully, but these errors were encountered: