Why can this loop not be parallelized in Matlab Coder?

179 views (last 30 days)
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
  7 Comments
Bruno Luong
Bruno Luong on 9 Nov 2024 at 10:01
Edited: Bruno Luong on 9 Nov 2024 at 10:04
May be I'm wrong but it seems coder can only parallelize loop with simple arithmetic operations using omp clause. Calling function such as det, inv or mldivide is not supported at the pesence.
Note that your for loop can be transformed to parfor
Felix Birkelbach
Felix Birkelbach on 15 Nov 2024 at 13:09
Dear Bruno,
thank you for your help! Parfor sort of solves my problem so I'll work with that. With this I'll give up on parallelization in Coder for now. I don't want to bother you with this anymore :)
-----------------------------------
For completenss sake, here are the things that I tiried over the last couple of days, which all did not work:
Based on your comment I spent a while testing and finally tried this code - which I adapted from the MultipleQR function that you posted on the Matlab File Exchange and which only contains arithmetic operations.
function X = backsubs(R, Q)
% solve R * X = Q'
% where R is an upper triangular matrix
% used to compute matrix inverse based on its QR decomposition
coder.noImplicitExpansionInFunction
r = size(R,2);
n = size(Q,2);
nP = size(R,3);
X = zeros(r,n,nP);
% coder.loop.parallelize("k");
for k = 1:nP
Rk = R(:,:,k);
Qk = Q(:,:,k);
Xk = zeros(r,n);
Rii = diag(Rk);
for i=r:-1:1
Xk(i,:) = (Qk(:,i)' - Rk(i,i+1:end)*Xk(i+1:end,:)) ./ Rii(i);
end
X(:,:,k) = Xk;
end
end
With automatic parallelization it says "Array or variable access pattern inside the loop is not suitable for parallel execution.". With explicit "coder.loop.parallelize("k")" active it says "Coder loop function ignored because the loop is not perfectly nested.". I tried it on Windows with MinGW and MSVC and on Linux. Regardless of what I try, it just won't parallelize my code. Could it be that parallization doesn't work with 3D arrays? Could it be a bug? Or do I just not get how parallelization works?

Sign in to comment.

Answers (0)

Products


Release

R2023b

Community Treasure Hunt

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

Start Hunting!