Fibonacci
Contents
- 1 Motivation
- 2 Background
- 3 The Core Questions
- 4 Code To Use
- 5 Studio (Required)
- 6 Fun (Optional)
- 7 Testing Your Solution
Motivation
It is important to always reduce the work, then parallelize if possible. In this studio you will build a beautiful, elegant solution to Fibonacci which can be easily parallelized yielding off-the-charts ideal parallelism. Sadly, it performs terribly since the work is exponential. It is far better to build a linear or log time algorithm whether or not it can be parallelized.
We will gain experience with the future construct.
We will convert recurrence relations into code.
Additionally, (and of minor importance) we gain experience working with the BigInteger class.
Background
The fibonacci sequence is a mathematical concept often used in computer science as a means to demonstrate iteration and recursion. Although you should be familiar with it from CSE 131, we will use the fibonacci sequence to demonstrate memoization and dynamic programming. Follow these links for a quick recap on memoization, dynamic programming, and the fibonacci sequence.
The Core Questions
- What are the tasks?
- What is the data?
- Is the data mutable?
- If so, how is it shared?
Code To Use
Parallel Docs
Check out the wiki's reference page to see how Future's can be used!
BigInteger Docs
fibonacci(47) is greater than Integer.MAX_VALUE which would overflow if we used the primitive int data type. We use BigInteger instead to prevent this problem.
Studio (Required)
RecurrenceRelationSequentialFibonacciCalculator
Work: |
class: | RecurrenceRelationSequentialFibonacciCalculator.java | |
methods: | fibonacci | |
package: | fibonacci.studio | |
source folder: | student/src/main/java |
method: public BigInteger fibonacci(int n)
(sequential implementation only)
implement a recursive method for:
recurrence relation
seed values
RecurrenceRelationParallelFibonacciCalculator
Work: | |
CPL: | |
Ideal Parallelism: |
class: | RecurrenceRelationParallelFibonacciCalculator.java | |
methods: | fibonacci | |
package: | fibonacci.studio | |
source folder: | student/src/main/java |
method: public BigInteger fibonacci(int n)
(parallel implementation required)
Use futures to add parallelism to the recurrence relation solution.
MemoizationSequentialFibonacciCalculator
Work: |
class: | MemoizationSequentialFibonacciCalculator.java | |
methods: | fibonacciMemo | |
package: | fibonacci.studio | |
source folder: | student/src/main/java |
method: private BigInteger fibonacciMemo(BigInteger[] memos, int n)
(sequential implementation only)
Implement the recurrence relation algorithm but employ memoization for the win.
@Override public BigInteger fibonacci(int n) { BigInteger[] memos = new BigInteger[n + 1]; return fibonacciMemo(memos, n); }
Warning: Do NOT invoke fibonacci from fibonacciMemo. Invoke fibonacciMemo from fibonacciMemo. |
Warning: The entire point of memoization is to avoid recalculating the same computation. Be sure to store the value for each calculation as it is made even if that means splitting up a line of code. |
DynamicIterativeSequentialFibonacciCalculator
Work: |
class: | DynamicIterativeSequentialFibonacciCalculator.java | |
methods: | fibonacci | |
package: | fibonacci.studio | |
source folder: | student/src/main/java |
method: public BigInteger fibonacci(int n)
(sequential implementation only)
Imagine you are simply writing out Fibonacci numbers:
- 0, 1, 1, 2, 3, 5, 8, 13...
Convert that process of summing the two previous numbers over and over into code.
LinearRecurrenceSequentialFibonacciCalculator
Work: |
note: can be memoized to
Work: |
class: | LinearRecurrenceSequentialFibonacciCalculator.java | |
methods: | fibonacci | |
package: | fibonacci.studio | |
source folder: | student/src/main/java |
method: public BigInteger fibonacci(int n)
(sequential implementation only)
Warning: Do NOT invoke fibonacci(k) or fibonacci(k-1) multiple times if you can catch the result in a variable and reuse it. |
Tip: There is no need to store k in a BigInteger. Since it is smaller than n, it will fit just fine in an int. |
Tip: You can shift left by 1 if you would prefer to not have to multiply by the big integer value of 2. |
recurrence relation
- if n is odd
- else
seed values
Fun (Optional)
RecurrenceRelationParallelWithThresholdFibonacciCalculator
Similar to #RecurrenceRelationParallelFibonacciCalculator but with a threshold in place to prevent creating too many tasks for the number of processors.
MemoizationParallelFibonacciCalculator
Create all of your futures [0..N] up front and then call get on memo[n].
DynamicRecursiveSequentialFibonacciCalculator
RoundPhiToTheNOverSqrt5SequentialFibonacciCalculator
Testing Your Solution
Correctness
class: | FibonacciTestSuite.java | |
package: | fibonacci.studio | |
source folder: | testing/src/test/java |
Performance
class: | FibonacciTiming.java | |
package: | fibonacci.studio | |
source folder: | src/main/java |
class: | FibonacciIterations.java | |
package: | fibonacci.studio | |
source folder: | src/main/java |