Difference between revisions of "Performance/Accumulating parameter"

From HaskellWiki
Jump to navigation Jump to search
(Different example, same efficiency in both cases.)
Line 2: Line 2:
 
== Accumulating Paramaters: Getting rid of the 'almost' in "almost tail recursive" ==
 
== Accumulating Paramaters: Getting rid of the 'almost' in "almost tail recursive" ==
   
Often times you will write a recursive function which is almost tail recursive. Consider this naïve implementation of a reverse function.
+
Often times you will write a recursive function which is almost tail recursive. Consider this naïve implementation of a function to compute the length of a list.
   
rev :: [a] -> [a]
+
len :: [a] -> Int
rev [] = []
+
len [] = 0
rev (x:xs) = rev xs ++ [x]
+
len (x:xs) = len xs + 1
   
 
Compile and run a simple program like the following:
 
Compile and run a simple program like the following:
   
main = putStrLn $ show $ rev [1..10000]
+
main = putStrLn $ show $ len [1..200000]
   
Profiling the above, I found that it took 13.86 seconds to run, allocating 1,202,138,892 bytes of memory! That rev function took over 99% of both the program's time and space.
+
Profiling the above, I found that it took 0.20 seconds to run. Increasing that number to 1000000 results in a stack overflow.
   
Looking at the function, we see it is recursive. The base step handles the case of reversing an empty list. The inductive step reverses the tail of the list, and adds the first element of the list onto the end of the list. By adding an accumulating parameter, we can make this tail recursive.
+
The above function seems to delegate most of the actual work to the recursive case. The only thing keeping it from being tail recursive is the requirement to increment the length of the remainder of the list.
   
  +
We can move this increment step into an accumulating parameter. This is an extra parameter that allows us to carry information along in the computation.
rev' :: [a] -> [a] -> [a]
 
rev' [] acc = acc
 
rev' (x:xs) acc = rev' xs (x:acc)
 
   
 
len' :: [a] -> Int -> Int
Here's how the new version works. acc is an accumulating parameter. The base case simply returns the accumulating parameter. The inductive step takes the head of the list and puts it on the front of the accumulator. Then it tail recurses with the tail of the list and the new accumulator value. In order to reverse a list, the accumulator should have an initial value of []. It's a good idea to provide a wrapper for functions written this way, so that the users don't have to deal with the accumulator.
 
 
len' [] acc = acc
 
len' (x:xs) acc = len' xs (1 + acc)
   
  +
Now the function is tail recursive. The accumulating parameter is returned in some form by the base case, and in the inductive case, we perform the step that prevented us from being truly tail recursive. We should provide a wrapper function that hides the detail of that accumulating parameter from users of the function.
rev xs = rev' xs []
 
   
 
len xs = len' xs 0
Profiling this new tail recursive reverse function yields impressive results. The run time of the program is now 0.02 seconds! The reversal operation takes an immeasurably small time, most of the time was occupied with constructing that list of numbers.
 
  +
  +
Running the above program with the new definition gives me a runtime of 0.02 seconds. What's more, increasing the upper limit of the list to one million doesn't overflow the stack!
   
 
The real performance gain came from the tail recursive implementation. Accumulating parameters is merely a means to turn an almost tail recursive implementation into a tail recursive implementation. The pattern to apply this technique to are ones which involve a tail recursion and a cons step. This latter step is performed on the accumulator and then passed into the tail recursive step.
 
The real performance gain came from the tail recursive implementation. Accumulating parameters is merely a means to turn an almost tail recursive implementation into a tail recursive implementation. The pattern to apply this technique to are ones which involve a tail recursion and a cons step. This latter step is performed on the accumulator and then passed into the tail recursive step.

Revision as of 02:26, 29 June 2006

Haskell Performance Resource

Constructs:
Data Types - Functions
Overloading - FFI - Arrays
Strings - Integers - I/O
Floating point - Concurrency
Modules - Monads

Techniques:
Strictness - Laziness
Avoiding space leaks
Accumulating parameter

Implementation-Specific:
GHC - nhc98 - Hugs
Yhc - JHC

Accumulating Paramaters: Getting rid of the 'almost' in "almost tail recursive"

Often times you will write a recursive function which is almost tail recursive. Consider this naïve implementation of a function to compute the length of a list.

 len :: [a] -> Int
 len [] = 0
 len (x:xs) = len xs + 1

Compile and run a simple program like the following:

 main = putStrLn $ show $ len [1..200000]

Profiling the above, I found that it took 0.20 seconds to run. Increasing that number to 1000000 results in a stack overflow.

The above function seems to delegate most of the actual work to the recursive case. The only thing keeping it from being tail recursive is the requirement to increment the length of the remainder of the list.

We can move this increment step into an accumulating parameter. This is an extra parameter that allows us to carry information along in the computation.

 len' :: [a] -> Int -> Int
 len' [] acc = acc
 len' (x:xs) acc = len' xs (1 + acc)

Now the function is tail recursive. The accumulating parameter is returned in some form by the base case, and in the inductive case, we perform the step that prevented us from being truly tail recursive. We should provide a wrapper function that hides the detail of that accumulating parameter from users of the function.

 len xs = len' xs 0

Running the above program with the new definition gives me a runtime of 0.02 seconds. What's more, increasing the upper limit of the list to one million doesn't overflow the stack!

The real performance gain came from the tail recursive implementation. Accumulating parameters is merely a means to turn an almost tail recursive implementation into a tail recursive implementation. The pattern to apply this technique to are ones which involve a tail recursion and a cons step. This latter step is performed on the accumulator and then passed into the tail recursive step.