M. Al-Hafidh
M. Al-Hafidh

Reputation: 11

parallel application on android devices

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

Answers (1)

Jeffrey Blattman
Jeffrey Blattman

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

Related Questions