Is there anything like OpenMP on Java?
A:
Open MPI implements the MPI specification. Here is a link to a java implementation here.
Milhous
2008-12-05 16:30:44
MPI (http://en.wikipedia.org/wiki/Message_Passing_Interface) is not the same as OpenMP (http://en.wikipedia.org/wiki/OpenMP), but it targets the same problem.
Mnementh
2008-12-05 16:33:09
It doesn't in fact. Both are complementary: basically mostly openmp for shared memory and mpi for distruibuted memory. The mix can give quite hairy codes though ^^
Piotr Lesnicki
2008-12-09 22:29:53
Question about this - Isn't jppf is to used when working with grid of computers, rather with one single computer with multiple threads?
Liran Orevi
2009-04-21 08:10:47
+1
A:
I think most people just use threads and the in-built concurrency constructs to achieve parallelism in Java.
http://java.sun.com/docs/books/tutorial/essential/concurrency/
Sorry I can't point you to anything more high level, but you might find that using threads isn't too bad - it's done quite well in Java.
Adrian Mouat
2008-12-09 18:10:54