user1590448
user1590448

Reputation: 31

Multi Core programming in Android

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

Answers (1)

jtt
jtt

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

Related Questions