Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Is it possible to make use of Android multicore CPU? I'm thinking about something like C# Parallel.ForEach() (example here) but if there is another approach to this, I'd also like to learn it.

My calculations can be easily divided into independent pieces. I know I can simply fire multiple Threads or AsyncTasks, but without knowing CPU abilities (1/2/4 cores - can I get such info?) it may not be as effective.

share|improve this question

1 Answer

up vote 3 down vote accepted

Android has AsyncTasks to help with multithreaded programming. In addition, Android includes the java.util.concurrent package for all the standard Java multithreading APIs. However, there is no equivalen to PLINQ in Java.

references:

http://developer.android.com/reference/android/os/AsyncTask.html http://download.oracle.com/javase/6/docs/api/java/util/concurrent/package-summary.html

You can also use Runtime.availableProcessors() to determine the number of processors available.

share|improve this answer
thanks, I wasn't aware of Runtime.availableProcessors() method! – tomash Oct 4 '11 at 8:19

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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