Why can this loop not be parallelized in Matlab Coder?
86 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
I am using MEX code to speed up a part of my computations and I would expect parallel computations to help at that. Automatic Parallelization is enabled, but even though the code is quite simple Coder refuses to parallelize it. In the coder report I see "Array or variable access pattern inside the loop is not suitable for parallel execution.". Another issue in the report asks me to enable "OptimizeReductions" to parallelize the line where the inverse is computed.
In the code below, you can see that, essentially, the function performes some pagewise operations on a large 3D matrix M. This seems like an obvious case for sliced variables to me.
I do not understand why this cannot be parallelized. What am I missing?
function [dets, Minv] = getDets(tri, xVrtx)
% Compute determinants of all simplices in the triangulation.
% Return the inverse of the characteristic matrix.
% tri ... nSmplx x nDim+1 matrix of vertex indices
% xVrtx ... nVrtx x nDim matrix of vertex coordinates
% dets ... nSmplx x 1 vector of determinants
% Minv ... nDim+1 x nDim+1 x nSmplx inverse of characteristic matrix
tri = int32(tri);
nDim = size(xVrtx, 2);
nSmplx = size(tri,1);
% characteristic matrices of all simplices
% nDim+1 x nDim+1 x nSmplx
M = [reshape(xVrtx(tri',:)', [nDim nDim+1 nSmplx]); ones([1 nDim+1 nSmplx])];
% allocate memory
dets = zeros(nSmplx,1);
Minv = zeros(nDim+1, nDim+1, nSmplx);
for j = 1:nSmplx
M_ = M(:,:,j);
dets(j) = det(M_);
if det(j) > 0
Minv(:,:,j) = inv(M_);
end
end
end % function
8 Kommentare
Divyam
am 9 Dez. 2024 um 4:22
Hi @Felix Birkelbach, it wont be possible to parallelize your code here since the nested for loop contains iterations that are dependent on other iterations, i.e. is dependent on . Restructuring your code to remove this dependency should fix your problems with parallelization.
Antworten (0)
Siehe auch
Kategorien
Mehr zu Matrix Indexing finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!