Parallel Processing with Multipul GPUs - fftn

2 visualizzazioni (ultimi 30 giorni)
Nathan Zechar
Nathan Zechar il 15 Mag 2020
Commentato: Walter Roberson il 16 Mag 2020
Hello, I was wondering it is possible to utilize multipul GPUs to perform several ffts in a manner where each individual fft could be given to an individual GPU to be processed in parallel - or simultaneous calculation of two separate functions.
For instance, something like this.
clear all
Nx = 256;
Ny = 256;
Nz = 512;
A = rand(Nx,Ny,Nz)+1i*rand(Nx,Ny,Nz);
A = gpuArray(A);
B = rand(Nx,Ny,Nz)+1i*rand(Nx,Ny,Nz);
B = gpuArray(B);
% GPU 1 will process this
A = fftn(A);
% GPU 2 will process this while GPU 1 is still processing the above
B = fftn(B);
% program waits for GPUs to finish then proceeds
Is this possible in MATLAB?

Risposte (1)

Matt J
Matt J il 15 Mag 2020
Modificato: Matt J il 15 Mag 2020
You can use gpuDevice() to select different GPUs for different calculations. gpuArray commands run asynchronously without blocking Matlab execution on your host CPU. So, the tasks below will run essentially in parallel with GPU 1 having only a slight head start.
% GPU 1 will process this
gpuDevice(1);
A = gpuArray.rand(Nx,Ny,Nz)+1i*gpuArray.rand(Nx,Ny,Nz);
A = fftn(A);
% GPU 2 will process this
gpuDevice(2);
B = gpuArray.rand(Nx,Ny,Nz)+1i*gpuArray.rand(Nx,Ny,Nz);
B = fftn(B);
  5 Commenti
Matt J
Matt J il 15 Mag 2020
Modificato: Matt J il 15 Mag 2020
1) For me it only takes 0.7 sec per call to gpuDevice(). It doesn't make much sense to be parallelizing if that's your bottleneck. The rest of your tasks would have to be trivially fast.
2) In parfeval, you are executing gpuDevice on different parpool workers, each acting like a different Matlab session, with its own workspace. I would not expect the workspace of the two parpool workers to interact at all.
Walter Roberson
Walter Roberson il 16 Mag 2020
If you use gpuDevice() to select a different device than is currently selected for that process then the existing GPU will be reset, losing information.
When you use parfeval() with a pool size that is no larger than the number of GPUs that you have, then each one will run in its own process and will be granted a GPU of its own. If I recall correctly, gpu selection is automatic for this situation.

Accedi per commentare.

Categorie

Scopri di più su Parallel Computing Fundamentals in Help Center e File Exchange

Prodotti


Release

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by