Passing a Global Variable to arrayfun for gpuArray

4 vues (au cours des 30 derniers jours)
FARHAN ISLAM
FARHAN ISLAM le 3 Nov 2021
Commenté : Jens Risbo le 17 Fév 2022
Hi,
I would like to pass a global array to the arrayfun function. While it does work with regular CPU array, it does not work with GPU array. My original code is quite complicated, but I am pasting a simplified code to help you understand what I am trying to do.
Any help on how this can be accomplished is greatly appreciated!
M = randi(500,100,100);
global a
a = [1 2 3];
tic
C = arrayfun(@function_sum,M);
CPUTime = toc
M = gpuArray(M);
tic
C = arrayfun(@function_sum,M);
GPUTime = toc;
Boost = CPUTime/GPUTime
function y = function_sum(x)
global a
y = 0;
for i = 1 : x
y = y + 1/i + 1*a(1) + 2*a(2) + 3*a(3);
end
end

Réponse acceptée

Edric Ellis
Edric Ellis le 4 Nov 2021
You can do this by using a nested function and variables in the containing parent workspace instead of global variables. Here's how you would apply this to your example. Note that I've made function_sum become a nested function, and it accesses a directly from the containing function workspace.
function repro
M = randi(500,100,100);
a = [1 2 3];
% Nested function
function y = function_sum(x)
y = 0;
for i = 1 : x
% Access 'a' directly from parent workspace
y = y + 1/i + 1*a(1) + 2*a(2) + 3*a(3);
end
end
tic
C = arrayfun(@function_sum,M);
CPUTime = toc
M = gpuArray(M);
tic
C = arrayfun(@function_sum,M);
GPUTime = toc;
Boost = CPUTime/GPUTime
end
There's a more detailed example of this approach here in the doc.
  2 commentaires
FARHAN ISLAM
FARHAN ISLAM le 5 Nov 2021
Thank you so much Edric! Your method worked and it lowered my calcualtion time on the original code that I am working with by a factor of 60.
Jens Risbo
Jens Risbo le 17 Fév 2022
Thanks for the example ! Just one Question.
Are these varables initialed everytime the nested function is called, or only once?
/Jens

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur GPU Computing dans Help Center et File Exchange

Produits


Version

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by