How to create a Linux cluster for running physics simulations in java?

后端 未结 8 543
花落未央
花落未央 2021-02-03 15:07

I am developing a scientific application used to perform physical simulations. The algorithms used are O(n3), so for a large set of data it takes a very long time to process.

8条回答
  •  你的背包
    2021-02-03 15:14

    I would very highly recommend the Java Parallel Processing Framework especially since your computations are already independant. I did a good bit of work with this undergraduate and it works very well. The work of doing the implementation is already done for you so I think this is a good way to achieve the goal in "number 2."

    http://www.jppf.org/

提交回复
热议问题