Reputation: 31
I am trying to write a computationally intensive program for android device in Java. Is there a way in which we can exploit different cores of processor in Android to boost the speed of our program ? Links to some useful articles will be highly appreciated. Thanks in advance.
Upvotes: 0
Views: 1440
Reputation: 13541
One thing you could look into is Renderscript.
http://developer.android.com/guide/topics/renderscript/index.html
from the dev site:
Renderscript provides a platform-independent computation engine that operates at the native level. Use it to accelerate your apps that require extensive computational horsepower.
Upvotes: 1