Reputation: 168
Ive been working with MPI and OMP parallel solutions in C as an assignment to school. I liked programming that way but im more into java. I did a little research and found lots of wrappers and API's but all of them were quiet old. So my question is whats the best "tool" for working with MPI OMP in java nowadays. Im a win user.Just saying that becase i found some solutions which had poor windows support
thx in advance
Upvotes: 0
Views: 1653
Reputation: 81
The most relevant and pain-less MPI Java implementations for you are: FastMPJ and MPJ Express. FastMPJ is a commercial product with free TCP/IP version whereas MPJ Express is an open source library.
Both have full support in Windows, as they are pure (non-wrapper) Java implementations. Both have extensive documentation on running on Windows, and using IDEs such as Eclipse, Netbeans and JCreator, check out their user's guide and documentation.
Upvotes: 2