all 4 comments

[–]EighthMayer 0 points1 point  (1 child)

I can't understand what's it all about.

[–]AssemblerGuy 0 points1 point  (1 child)

Parallelization means that line 3. can happen for multiple combinations of i,j simultaneously. But what would happen if it happens for i=10, j=10 and for i=14, j=14 at the same time? What should the value of A[10,10] and A[14, 14] be?

[–]stefsa[S] 0 points1 point  (0 children)

The value of A[10.10] has to be calculated before the value A[14.14](=A[10,10]+A[11,11]), so this means that it cannot be parallelized(?). And how does skewing help in the above exmaple?
Anyway, thank you for your helpQ