フィルターのクリア

How to efficiently allocate memory using a parfor loop

25 ビュー (過去 30 日間)
tiwwexx
tiwwexx 2022 年 6 月 28 日
コメント済み: tiwwexx 2022 年 6 月 30 日
Hello all, I have a quick optimization question.
I'm doing calculations on some very large point cloud data. The calculation I'm doing is
for n=1:size(E_mat,1)
Q_matrix(n,:,:) = sigmaE(n)/2/mass_density(n)*squeeze(E_mat(n,:,:))'*squeeze(E_mat(n,:,:));
end
where size(E_mat) ~70000000,3,24. This code should be super parallelizable but when I use parfor I get a memory issue. I have access to a good compute server with 40 cores and 512Gb of RAM. The current for loop utilizes about 300Gb of RAM but only 1.2% CPU. I'm pretty new to high performance computing but I'm pretty sure the for loop is running single threaded due to the low CPU usage. Is there a simple way to fix this?
Thanks so much for the help!!
  4 件のコメント
Walter Roberson
Walter Roberson 2022 年 6 月 28 日
squeeze is fast. It is extracting the data that is slow. The memory layout is
(1,1,1) (2,1,1) (3,1,1) (4,1,1)... (70000000,1,1), (1,2,1) (2,2,1)... (70000000, 2,1) and so on. The data for (n, :, :) is all over the place in memory. If you make 70000000 the final dimension then each 3x24 is stored in consecutive memory.
tiwwexx
tiwwexx 2022 年 6 月 29 日
Thanks for the explaination!

サインインしてコメントする。

採用された回答

Jan
Jan 2022 年 6 月 29 日
編集済み: Jan 2022 年 6 月 29 日
ET = permute(E_mat, [2,3,1]);
Q = zeros(size(ET));
parfor n = 1:size(E_mat, 3)
Q(:,:,n) = sigmaE(n) / 2 / mass_density(n) * ET(:, :, n)' * ET(:, :, n);
% Or maybe this is faster:
% tmp = ET(:, :, n);
% Q(:,:,n) = sigmaE(n) / 2 / mass_density(n) * tmp' * tmp;
end
I'm curious: What do you observe?
Du you really mean ctranspose or is ET real? Then .' would be the transposition.
What about using pagemtimes ?
ET = permute(E_mat, [2,3,1]);
Q = pagetimes(ET, 'transpose', ET, 'none');
  5 件のコメント
Jan
Jan 2022 年 6 月 30 日
By the way: A=E_mat_pt(:,:,1:end) is less efficient than A=E_mat_pt .
tiwwexx
tiwwexx 2022 年 6 月 30 日
That was a by product of my GPU running out of memory, I had to split up the array into a few parts to fit it on the gpu.

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeParallel Computing Fundamentals についてさらに検索

製品


リリース

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by