Hello, I am trying to wright a variable directly on the GPU using the following command:
Mostrar comentarios más antiguos
A5 = parallel.gpu.GPUArray.rand(3000,3000);
but I get the following error:
Undefined variable "parallel" or class "parallel.gpu.GPUArray.rand". I don't know why I get this error. I am using Matlab 2015b. Could someone help me?
Respuestas (2)
Do you have the Parallel Processing Toolbox installed and licensed? Check this by the ver command.
1 comentario
FRANCESCO DE VIVO
el 22 de Nov. de 2016
Edric Ellis
el 23 de Nov. de 2016
That's the old syntax from R2011a or so. In R2015b, you can do simply:
A5 = rand(3000, 3000, 'gpuArray');
(The direct equivalent is gpuArray.rand(3000,3000)).
2 comentarios
FRANCESCO DE VIVO
el 23 de Nov. de 2016
Sean de Wolski
el 23 de Nov. de 2016
Both of these create the array directly on the GPU.
Categorías
Más información sobre GPU Computing in MATLAB en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!