Efficient Vectorization of For Loop

46 views (last 30 days)
Shreyas Bharadwaj
Shreyas Bharadwaj on 15 Apr 2024 at 21:08
Commented: Shreyas Bharadwaj on 16 Apr 2024 at 14:44
Hi,
I have three matrices and C and am trying to compute a fourth matrix Min the following way:
for p = 1:N
for q = 1:N
M(p,q) = 2 * sum(A(:,q) .* conj(B(:,p)) .* C(:,q));
end
end
All matrices are . I am trying to compute this for N = 750 or so and the computation is extremely slow. I cannot find any obvious way to vectorize the code. Any help would be very much appreciated.
Thanks.

Accepted Answer

Bruno Luong
Bruno Luong on 15 Apr 2024 at 21:57
Edited: Bruno Luong on 15 Apr 2024 at 22:12
Not tested but the sign reading tell me
M = 2*B' * (A.*C);
  4 Comments
James Tursa
James Tursa on 15 Apr 2024 at 22:31
Edited: James Tursa on 15 Apr 2024 at 22:33
I would guess that having 2*B' at the front will force MATLAB to physically compute the conjugate transpose of B first. However, if you segregate the 2* operation as 2 * (B' * (A.*C)), the B' would not need to be physically formed to do the conjugate transpose matrix multiply since this will be handled by flags passed into the BLAS routine. Maybe a bit faster? E.g.,
A = rand(5000); B = rand(5000); C = rand(5000);
timeit(@()2*B' * (A.*C))
ans = 0.5515
timeit(@()2*(B' * (A.*C)))
ans = 0.4901

Sign in to comment.

More Answers (0)

Categories

Find more on Loops and Conditional Statements 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!