I am doing a study (as part of a course requirement) on the new Fork-Join framework in Java 7 and analyze the performance improvement compared to the conventional threading mechanism. What are the kinds of divide and conquer algorithms that are guaranteed to run faster with the new fork join framework. Can you suggest any non-trivial algorithm I can work on to analyze the performance difference.
|
closed as not constructive by Bill the Lizard♦ Sep 19 '12 at 16:30
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.
|
You can try N body problem: http://en.wikipedia.org/wiki/N-body_problem |
|||
|
|
|
Maybe linear algebra problems would be a good fit: LU or QR decomposition, forward-back substitution, an eigenvalue solution method like Jacobi iteration, etc. Finite element solution of problems in solid mechanics, heat transfer, and fluid mechanics are significant sources of these kinds of problems. |
|||
|
|
|
The Fork-Join framework is an academic exercise. Try the framework described in this article: http://www.coopsoft.com/ar/ConquerArticle.html |
|||||
|