Fuzzy Iterative Averaging Assignment
Jump to navigation
Jump to search
Previous Studio
Code to Implement
Note: Optional In Spring 2022 Semester
FuzzyPhased
class: | FuzzyPhasedParallelIterativeAverager.java | |
methods: | iterativelyAverage | |
package: | iterativeaveraging.fuzzy.challenge | |
source folder: | student/src/main/java |
method: public double[] iterativelyAverage(double[] originalArray, int iterationCount)
(parallel implementation required)
Which indices must be complete before neighboring tasks can proceed? Which indices have more flexibility?
create phaser register phaser for each task parallel loop sequential loop shared work arrive on phaser local work await advance (must specify the phase) on phaser
Testing Your Solution
class: | _FuzzyIterativeAveragerTestSuite.java | |
package: | iterativeaveraging.fuzzy.challenge | |
source folder: | testing/src/test/java |