previous up next
Go backward to Cyclic Distribution of Columns
Go up to Top
Go forward to Memory Access Analysis
RISC-Linz logo

Row Based Cyclic Distribution

for all P_m do in parallel
  for i = m to n by p do
    for j = i to n do
      C[i,j] = 0
      for k = 1 to n do
        C[i,j] = C[i,j] + A[i,k]*B[k,j]
      end
    end
  end
end

Memory contention is ignored in this analysis!


Author: Wolfgang Schreiner
Last Modification: October 27, 1997

previous up next