vote up 1 vote down star

Suppose I write a program using immutable data structures in Java. Even though it is not a functional language, it should be able to execute parallely. How do I ensure that my program is being executed using all the cores of my processer? How does the computer decide which code can be run parallely?

P.S. My intent in asking this question was not to find out how to parrallelize java programs. But to know - how does the computer parallelize code. Can it do it in a functional program written in a non functional language?

flag

5 Answers

vote up 3 vote down check

i dont think you can "force" the JVM to parallelize your program, but having a separate thread executing each "task", if you can break down your program that way, would probably do the trick in most cases? parallelism is still not guaranteed however.

link|flag
vote up 0 vote down

Something that I used in school that did alot of the work for you.

http://www.cs.rit.edu/~ark/pj.shtml

It has the capability to do SMP or message based parallelism.

Whether or not it is useful to you is a different question :-)

link|flag
vote up 1 vote down

You can write functions with automatically parallelise tasks, it is fairly easy to do for specific cases, however I am not aware of any built-in Java API which does this. (Except perhaps the Executor/ExecutorService)

link|flag
vote up 4 vote down

I am not aware of automatic parallelization JVMs. They do exist for other languages such as FORTRAN.

You might find the JSR166y fork-join framework scheduled for JDK7 interesting.

link|flag
The automatic parallelization link was useful, thanks! – Pranav May 11 at 19:36
vote up 8 vote down

Java programs are parallelized through threads. The computer can't magically figure out how to distribute the pieces of your application across all the cores in an imperative language like Java. Only a functional language like Erlang or Haskell could do that. Read up on Java threads.

link|flag
1  
I don't see why that should be the preserve of "pure functional" languages. – Tom Hawtin - tackline May 11 at 11:43
You're right, I don't know why I put that there... – musicfreak May 11 at 11:54
1  
A program using immutable structures in Erlang or Haskell doesn't parallelize magically either. The parallelization tools are much easier to use, but you still have to explicitly use them. – Nathan Sanders May 14 at 2:14
1  
@Nathan Sanders: I said could, aka it would be easy to write such a program/framework in those languages. Doing so in Java would take a lot more work, and it would be a lot less elegant. – musicfreak May 14 at 16:38

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.