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

How to connect android app to App engine -

gcc - MinGW's ld cannot perform PE operations on non PE output file -

php - display validation error message next to the textbox in codeigniter -