Reputation: 11
Can I write a parallel application on multicore android phones? I am trying to divide the application in to threads and run each thread on a core , to speed up the application . Can I control threads distribution on cores ?
Upvotes: 1
Views: 826
Reputation: 22637
Can I control threads distribution on cores ?
no, and you don't want to. you create threads as you need. let the OS / VM decide how to distribute across cores. the OS / VM engineers are smarter than us.
Upvotes: 1