The space-leak tag has no wiki summary.
12
votes
2answers
301 views
STUArray s i e - space leak only when i == Int?
I am confused by the behaviour of the following snipped:
import Data.Int
import Data.Array.ST
import Control.Monad.ST
{-# INLINE fib #-}
fib _ 0 = return 0
fib _ 1 = return 1
fib c n = do
f1 <- ...
0
votes
1answer
268 views
Why does this code consume so much heap?
Here is the full repository. This is a very simple test which inserts 50000 random things into the database with the postgresql-simple database binding. It uses MonadRandom and can generate Things ...
12
votes
1answer
412 views
Irrefutable pattern does not leak memory in recursion, but why?
The mapAndSum function in the code block all the way below combines map and sum (never mind that another sum is applied in the main function, it just serves to make the output compact). The map is ...
20
votes
2answers
325 views
Space leak with redundant use of seq in GHC interpreter
I type this code into the interpreter and memory is rapidly consumed:
last [1..10^7] `seq` ()
I can't see why this needs more than O(1) space. If i do just (which should be the same, because Show ...
13
votes
2answers
441 views
Space leaks in Haskell
I have read it many times that lazy evaluation in Haskell may sometimes lead to space leaks. What kind of code can lead to space leaks? How to detect them? And what precautions can be taken on part of ...
18
votes
3answers
535 views
Space leaks, and Writers, and Sums (oh my!)
I've been playing with the Writer Monad recently, and I've run into
what appears to be a space leak. I can't say I fully understand these
things yet, so I'd like to know what's happening here, and ...