- vectorize gpu operations when possible. Even if it means breaking up flows into two parts each of which is vectorized instead doing the two parts together
- in your last loop instead of logical mask used to index the gpu array and mean() , multiply the mask by the values and sum, and divide by the sum of the mask. The multiplication by 0 or 1 applied unconditionally is a lot faster than indexing on the gpu.
- think about techniques such as discretize or histcounts to get grouping variables, and accumarray() with @mean or splitapply()
Re-arrange matrix based on index on GPU using arrayfun
2 views (last 30 days)
Show older comments
Hi,
I want to re-arrange a two dimensions frequency domain x,y to p=sqrt(x^2+y^2) on GPU. I can do so with the code below. However, it it is pretty slow for my application (2 seconds). I have read about arrayfun but could not make it work for my purpose. Any help is much appreciated.
nx=200;
Nx=floor(nx/2);
ny=100;
Ny=floor(ny/2);
t=200;
Nt=floor(t/2);
A=gpuArray(single(rand(nx,ny,t)));
A=fft2(A);
A=A(1:Ny,1:Nx,:);
freqx=0:1/nx:1/2-(1/nx);
freqy=0:1/ny:1/2-(1/ny);
A=fft(A,nz,3);
G=gpuArray(single(zeros(Ny*Nx,Nt+1)));
for ii=1:Nx
for jj=1:Ny
G((ii-1)*ny+jj,1)=sqrt(freqx(1,ii)^2+freqy(1,jj)^2);
G((ii-1)*ny+jj,2:end)=abs(squeeze(A(jj,ii,1:Nt)));
end
end
Ma=max(G(:,1));
bin=Ma/100;
Y=gpuArray(single(zeros(100,Nt+1)));
for ii=1:100
loik= (G(:,1)>=(bin*(ii-1)) & G(:,1)<(bin*(ii)));
Y(ii,:)=mean(G(loik,:));
end
Any help is appreciated.
Thanks
4 Comments
Walter Roberson
on 30 Jul 2019
dsolve cannot be vectorized and cannot use gpu. It can be run in parallel on the cpu using the Parallel Computing toolbox.
The ability to use character vectors to define ode is going away soon. You should be rewriting in terms of symbolic equations.
Sometimes you can define the boundary conditions as symbolic and dsolve that, and then afterwards just subs() the numeric boundaries into the result. This does not always work even in cases where dsolve seems to find solutions for all initial conditions that you try.
You should also look at using odeFunction to transform your ode into something that can be processed numerically with ode45 or similar.
Answers (0)
See Also
Categories
Find more on Special Functions in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!