Question

1. In the following C code, elements of each row are stored contiguously in memory. Assume...

1. In the following C code, elements of each row are stored contiguously in memory.

Assume each element in an array is a 32-bit integer.

p = 0;

for (j=0; j<8; ++j)

for(i=500; i>0; --i )

{    

A[ i] = 2 * B[j];

++p;

}

a. How many 32-bit integers can be stored in a 32-byte cache block?

b. Which variable references exhibit temporal locality?

c. Which variable references exhibit spatial locality?

Homework Answers

Answer #1

a. 1 byte= 8 bits

This implies 32 bits = 32/8 = 4 bytes

No: of 32 bit (4 bytes) integers than can be stored in a 32 - byte cache block = 32/4 = 8

Hence 8 32 bit integers can be stored in a 32 byte cache block

b. p is referenced by the instruction ++p frequently. Hence we can say that the variable p exhibit temporal locality. Similary B[j] (j being any integer) is referenced by the instruction A[i] = 2* B[j] frequently. Hence B[j] also exhibit temporal locality

c. In the inner loop, A[i], i being the variable of the loop, is executed continuously. Hence A[i[ and A[i+] will be saved next to each other in memory. This implies that A[i] exhibits spatial locality.

Know the answer?
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for?
Ask your own homework help question
Similar Questions
Consider the C code below which reverses the elements in the array A in place. Both...
Consider the C code below which reverses the elements in the array A in place. Both array indexing and pointer versions are given. Assume that A holds doubleword integers and that size is the number of elements in the array. Translate to RISC-V using as few instructions as possible. For your RISC-V code, assume the base address of A is initially in x10 and that the number of elements in the array (i.e., size) is initially in x11. long long...
Write the C55x assembly code for each of the following C snippet code shown below. Assume...
Write the C55x assembly code for each of the following C snippet code shown below. Assume the 8-bit values a, b, c, and d are stored in locations 0x600, 0x601, 0x602, and 0x603 respectively in the memory. Store the result x in location 0x604 and y in location 0x60C. Do not use software to generate the assembly code and comment your code. x = (a - b)3 - (c*d); for (j=0;j<=200;j++)   y = y + (a * b);
For the following C statement, what is the corresponding RISC-V assembly code? Assume that the variables...
For the following C statement, what is the corresponding RISC-V assembly code? Assume that the variables f, g, h, and i are given and could be considered 32-bit integers as declared in a C program. Assume your own memory addresses and registers to be used. f = g + (h − 5); B[8] = A[i−j]; addi $t0, $t1,-5 add $t2, $t0, $t3 A is in $S6, B is in $S7
Question 1 Consider the following 32-bit IEEE 754 floating point number. The binary number has been...
Question 1 Consider the following 32-bit IEEE 754 floating point number. The binary number has been separated into the sign, exp and frac fields Sign = 1           exp = 1000 0001           frac= 1111 0000 0000 0000 0000 000 Convert this number to decimal. Recall that the bias is 127 for IEEE single precision. Consider the following working C code. For(i = 0; I < 3: i++)             For(j = 0; j<=I; j++)                         Arr[i][j] = i + j; Sketch arr...
Your C program will do the following : Must use at least 2 function prototypes &...
Your C program will do the following : Must use at least 2 function prototypes & definitions . You can also use repetitions , control structures . You re not allowed any type of global arrays, or global variables. You are only allowed to use 2 dimensional arrays. 1. In your main program, create a array of size 7 X 7. 2. Create a function that accepts the empty array. The function will initiate the to zero. Then, the function...
getting an error for the code below when attempting to compile . Not fully sure what...
getting an error for the code below when attempting to compile . Not fully sure what the error means and confused why I am getting the error. I know there are a of other logical errors but im just looking for the solution to this specific one right now. /tmp/ccq2rdty.o: In function `main': IntArrayPlay.cpp:(.text+0x42): undefined reference to `fillArray(int*, int&)' IntArrayPlay.cpp:(.text+0x55): undefined reference to `displayArray(int*, int&)' IntArrayPlay.cpp:(.text+0x114): undefined reference to `displayArray(int*, int&)' IntArrayPlay.cpp:(.text+0x15f): undefined reference to `displayArray(int*, int&)' collect2: error: ld...
This is C programming assignment. The objective of this homework is to give you practice using...
This is C programming assignment. The objective of this homework is to give you practice using make files to compose an executable file from a set of source files and adding additional functions to an existing set of code. This assignment will give you an appreciation for the ease with which well designed software can be extended. For this assignment, you will use both the static and dynamic assignment versions of the matrix software. Using each version, do the following:...
Implement a singly linked list having all unique elements with the following operations.I 0 x –...
Implement a singly linked list having all unique elements with the following operations.I 0 x – Inserts element x at the end. I 1 y x – If the element y exists, then insert element x after the element y, else insert element y before the existing element x. Assuming either the element x or the element y exists. I 2 z y x – Inserts element x in the middle of the elements z and y. The element z...
1. Given an n-element array A, Algorithm X executes an O(n)-time computation for each even number...
1. Given an n-element array A, Algorithm X executes an O(n)-time computation for each even number in A and an O(log n)-time computation for each odd number in A. What is the best-case running time of Algorithm X? What is the worst-case running time of Algorithm X? 2. Given an array, A, of n integers, give an O(n)-time algorithm that finds the longest subarray of A such that all the numbers in that subarray are in sorted order. Your algorithm...
Write the following program in MIPS: a) declare an array A of the following numbers: 3,...
Write the following program in MIPS: a) declare an array A of the following numbers: 3, 5, 8, 10, 12, 2, 76, 43, 90, 44 b) declare a variable called size which stores the number of element in array A, that is 10. c) write a subroutine to search for a number stored in an array and return true or false. In C++ the subroutine is as follows: search(array, size, number_To_Search) e.g. search(A, 10, 12) The subroutine should return 0...
ADVERTISEMENT
Need Online Homework Help?

Get Answers For Free
Most questions answered within 1 hours.

Ask a Question
ADVERTISEMENT