Difference between revisions of "Fibonacci"
Line 16: | Line 16: | ||
==Javadocs== | ==Javadocs== | ||
− | [ | + | [https://www.cse.wustl.edu/~cosgroved/courses/cse231/current/apidocs/edu/wustl/cse231s/v5/V5.html V5] |
− | : [ | + | : [https://www.cse.wustl.edu/~cosgroved/courses/cse231/current/apidocs/edu/wustl/cse231s/v5/V5.html#future-edu.wustl.cse231s.v5.api.CheckedCallable- future(body)] |
− | [ | + | [https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/Future.html interface Future<V>]. |
− | : [ | + | : [https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/Future.html#get-- get()] |
=Common Mistakes To Avoid= | =Common Mistakes To Avoid= | ||
− | + | {{Warning|When memoizing, be sure to store the value for each calculation as it is made.}} | |
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
=Studio (Required)= | =Studio (Required)= | ||
Line 47: | Line 40: | ||
{{CodeToImplement|RecurrenceRelationParallelFibonacciCalculator|fibonacci|fibonacci.studio}} | {{CodeToImplement|RecurrenceRelationParallelFibonacciCalculator|fibonacci|fibonacci.studio}} | ||
Use futures to add parallelism to the recurrence relation solution. | Use futures to add parallelism to the recurrence relation solution. | ||
+ | |||
+ | WORK: <math>\Phi^N</math> | ||
+ | |||
+ | CPL: <math>N</math> | ||
+ | |||
+ | Ideal Parallelism: <math>\dfrac{\Phi^N}{N}</math> | ||
==MemoizationSequentialFibonacciCalculator== | ==MemoizationSequentialFibonacciCalculator== | ||
Line 54: | Line 53: | ||
==DynamicIterativeSequentialFibonacciCalculator== | ==DynamicIterativeSequentialFibonacciCalculator== | ||
+ | ==LinearRecurrenceSequentialFibonacciCalculator== | ||
===recurrence relation=== | ===recurrence relation=== | ||
Line 75: | Line 75: | ||
=Fun (Optional)= | =Fun (Optional)= | ||
==DynamicRecursiveSequentialFibonacciCalculator== | ==DynamicRecursiveSequentialFibonacciCalculator== | ||
− | |||
==MemoizationParallelFibonacciCalculator== | ==MemoizationParallelFibonacciCalculator== | ||
Create all of your futures [0..N] up front and then call get on memo[n]. | Create all of your futures [0..N] up front and then call get on memo[n]. |
Revision as of 20:07, 5 February 2018
Contents
- 1 Motivation
- 2 Background
- 3 Where to Start
- 4 Common Mistakes To Avoid
- 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 time or log time algorithm independent of if can or cannot be parallelized.
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.
Where to Start
You will need to return the number associated with a given position in the fibonacci sequence. For example, if 0 was fed in, the method should return 0. 1 should return 1, 2 should return 1, 3 should return 2, and so on.
JUnit Test Suite
FibonacciTestSuite
Javadocs
Common Mistakes To Avoid
Warning:When memoizing, be sure to store the value for each calculation as it is made. |
Studio (Required)
RecurrenceRelationSequentialFibonacciCalculator
class: | RecurrenceRelationSequentialFibonacciCalculator.java | |
methods: | fibonacci | |
package: | fibonacci.studio | |
source folder: | student/src/main/java |
implement a recursive method for:
recurrence relation
seed values
RecurrenceRelationParallelFibonacciCalculator
class: | RecurrenceRelationParallelFibonacciCalculator.java | |
methods: | fibonacci | |
package: | fibonacci.studio | |
source folder: | student/src/main/java |
Use futures to add parallelism to the recurrence relation solution.
WORK:
CPL:
Ideal Parallelism:
MemoizationSequentialFibonacciCalculator
class: | MemoizationSequentialFibonacciCalculator.java | |
methods: | fibonacciMemo | |
package: | fibonacci.studio | |
source folder: | student/src/main/java |
Implement the recurrence relation algorithm but employ memoization for the win.
DynamicIterativeSequentialFibonacciCalculator
LinearRecurrenceSequentialFibonacciCalculator
recurrence relation
- if n is odd
- else
seed values
Fun (Optional)
DynamicRecursiveSequentialFibonacciCalculator
MemoizationParallelFibonacciCalculator
Create all of your futures [0..N] up front and then call get on memo[n].
RoundPhiToTheNOverSqrt5SequentialFibonacciCalculator
Testing Your Solution
Correctness
class: | FibonacciTestSuite.java | |
package: | fibonacci.studio | |
source folder: | testing/src/test/java |
Performance
class: | FibonacciIterations.java | |
package: | fibonacci.studio | |
source folder: | src/main/java |