Dear All,
I have two GPU devices (GeForce GTX 1070 Ti and GeForce GTX 1060 6GB) and I have code that works great with one GPU. However when I try to implement the code on two GPUs it becomes 10x times slower. The thing is that I never workd with multiple GPUs. What is wrong with my implementation? Here is code:
clear;
delete(gcp('nocreate'));
parpool(gpuDeviceCount);
dydis=5050;
load 4.mat
[z,~]=size(test);
z=z/dydis;
z = fix(z);
tic
parfor i=1:z
comi=0.05;
ut=1;
t=0.6;
ut1=ut;
d=5001;
window=5000;
atidaryta=1000;
dydis=5050;
x1(:,:,i)=test(i*dydis+1-dydis:i*dydis,:);
x=gpuArray(x1(:,:,i));
x23=x(1:end-d,:);
[n1,n2]=size(x);
n1=gpuArray(n1);
n2=gpuArray(n2);
d=gpuArray(d);
t=gpuArray(t);
window=gpuArray(window);
atidaryta=gpuArray(atidaryta);
xt=x.';
x = [];
dx=(d-window-1:d-2).' + (1:n1-d);
[sujn1(:,:,i),sujn2(:,:,i)]=mazinta(xt,dx,n2,n1,d,x23,t,window,atidaryta,comi);
end
toc
2 Comments
Direct link to this comment
https://es.mathworks.com/matlabcentral/answers/421395-using-multiple-gpu-for-functions#comment_616100
Direct link to this comment
https://es.mathworks.com/matlabcentral/answers/421395-using-multiple-gpu-for-functions#comment_616100
Direct link to this comment
https://es.mathworks.com/matlabcentral/answers/421395-using-multiple-gpu-for-functions#comment_616127
Direct link to this comment
https://es.mathworks.com/matlabcentral/answers/421395-using-multiple-gpu-for-functions#comment_616127