simky13 s
simky13 s

Reputation: 31

Can GPU be used in numerical calculations (Complex matrix multiplication) on Android Environmement?

I am implementing Kalman filter algorithm in Android. The code has some complex matrix multiplication operations. The matrix elements are of type float. My question is

1) how are floating point handled in Android??

2) Can GPU be used in complex matrix (elements of type float) calculations or any kind of numerical calculations?

Thank you very much

Upvotes: 2

Views: 1020

Answers (1)

75inchpianist
75inchpianist

Reputation: 4102

android.opengl.Matrix library took care of this for you

renderscript seems to be a more user controllable solution.

Upvotes: 2

Related Questions