matlab - Improve Speed of Matrix Multiplication by Taking Advantage of GPUArray -


i want improve speed of multiplication of matrix a (m-by-n) , vector x (n-by-1) using gpuarray. using:

gpua = gpuarray(a); gpux = gpuarray(x); gpuc = gpua * gpux c = gather(gpuc) 

didn't give me needed improvement in speed

any ideas on how can achieve this?


Comments

Popular posts from this blog

java - BeanIO write annotated class to fixedlength -

Using Java 8 lambdas/transformations to combine and flatten two Maps -

How to connect android app to App engine -