Borrar filtros
Borrar filtros

how to rum m file with GPU

2 visualizaciones (últimos 30 días)
Shehab Tarek
Shehab Tarek el 22 de Jul. de 2020
Comentada: Walter Roberson el 22 de Jul. de 2020
hello guys i am asking for how to active the GPU to run the m file faster
what the i can do

Respuesta aceptada

Walter Roberson
Walter Roberson el 22 de Jul. de 2020
You cannot do that. When MATLAB talks to the GPU, it mostly does so in terms of a bunch a specialized pre-compiled code kernels (that are in the binary programming language of the GPUs.) The GPU does not run MATLAB code, only the pre-compiled snippets.
You can do some processing on GPU by using GPU Coder product; https://www.mathworks.com/products/gpu-coder.html but do not expect it to handle MATLAB code in general.
  5 comentarios
Edric Ellis
Edric Ellis el 22 de Jul. de 2020
I wouldn't say that "the GPU does not run MATLAB code". Of course, MATLAB code doesn't run directly on the GPU - but if you use the GPU version of arrayfun, then the function you're running is converted into an optimised kernel and runs directly on the GPU. (That's why the GPU version of arrayfun can be blazingly fast).
Walter Roberson
Walter Roberson el 22 de Jul. de 2020
I wouldn't say that "the GPU does not run MATLAB code".
I would say it without hesitation, just as I would say that Intel x64 architecture chips do no run C code. The code has to be compiled to run on the target, with the instructions generally not even in the same order as implied by the original code.
gpuArray support is only available for the operations Mathworks has already pre-built GPU support for. Anything beyond that requires GPU Coder product.

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Image Data Workflows en Help Center y File Exchange.

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by