Question: 5 . 1 In this exercise we look at memory locality properties of matrix computation. The following code is written in C , where elements
In this exercise we look at memory locality properties of matrix computation.
The following code is written in C where elements within the same row are stored
contiguously. Assume each word is a bit integer.
for I; I; I
for J; J; J
AIJBIAJI;
A How many bit integers can be stored in a byte cache
block?
B Which variable references exhibit temporal locality?
C Which variable references exhibit spatial locality?
Locality is affected by both the reference order and data layout. The same
computation can also be written below in Matlab, which differs from C in that it
stores matrix elements within the same column contiguously in memory.
for I:
for J:
AIJBIAJI;
end
end
D Which variable references exhibit temporal locality?
E Which variable references exhibit spatial locality?
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
