Why GPU computation does not scale linearly with the number of loops ?

2 vues (au cours des 30 derniers jours)
gdgc
gdgc le 19 Déc 2017
Commenté : Joss Knight le 20 Déc 2017
Good evening everyone,
I'm currently trying to speed up my code by converting it to GPU computation. But I'm facing a problem I didn't have with CPU : The time doesn't scale linearly with the number of loops.
Here is the code :
Nloops = 500;
dt=1e-1; % time step
n=3e3; % number of vortices
z1=complex(gpuArray.randn(1,n),gpuArray.randn(1,n)); % vortices position
C1=repmat(1e-2*gpuArray.randn(n,1),1,n); % circulation
D=gpuArray.eye(n);
nD=~D;
tic
for ii=1:Nloops
Z1 = repmat(z1,n,1);
z1 = z1 + (dt*0.5i/pi) * (sum((C1.*nD)./(Z1-Z1.'+D),1));
end
toc
The result is quite surprising
Nloops = 100 : Elapsed time is 0.014950 seconds.
Nloops = 500 : Elapsed time is 17.072178 seconds.
While on CPU it scales well ( 3 and 15 seconds respectively ), do you have an idea why it scales so badly on GPU ?

Réponse acceptée

Matt J
Matt J le 19 Déc 2017
tic and toc are not accurate measures of GPU execution time. Use gputimeit() instead.
  11 commentaires
Walter Roberson
Walter Roberson le 19 Déc 2017
I am using a 650M card (2012 time frame) with R2017b.
I tried adding in a gather() to force the computation to finish, but it did not seem to make any difference. However, either way (with or without gather) if I run the tests close together then it takes additional time, but if I wait the timer is faster. This suggests the GPU might not have finished (even with the gather.)
Note: in the source below, I use 1e3 nodes not 3e3, so as to avoid filling my GPU memory.
function testtime
dt=1e-1; % time step
n=1e3; % number of vortices
z1 = complex(gpuArray.randn(1,n),gpuArray.randn(1,n)); % vortices position
C1=repmat(1e-2*gpuArray.randn(n,1),1,n); % circulation
D=gpuArray.eye(n);
nD=~D;
gputimeit(@()gather(LoopPart(z1)))
function z1 = LoopPart(z1)
Nloops = 500;
for ii=1:Nloops
Z1 = repmat(z1,n,1);
z1 = z1 + (dt*0.5i/pi) * (sum((C1.*nD)./(Z1-Z1.'+D),1));
end
end
end
Joss Knight
Joss Knight le 20 Déc 2017
Try removing the repmat from your loop, with automatic scalar expansion you don't need it: Z1-Z1.' == z1-z1.'

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Get Started with GPU Coder dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by