Final Test: Computer Architecture
The grade formula is as follows:
Grade = 0.4 * Theory + 0.6 * Programming
- Send answers to the theoretical questions via Telegram.
- Submit solution to the programming task to Ejudge contest.
Part 1. Theoretical Questions
Answer the theoretical questions in a few sentences (1-2 sentences for a question).
Use your own words. Copy-paste from external sources and other students will result in 100% penalty.
Assessment criteria:
- Answers to each of the question four topics (data formats, pipeline, caches, interrupts) have the same weight and can give up to 2.5 points each.
- Answers to subquestions are evaluated as a whole (they are numbered in order not to be missed). Generally, the most basic questions come first.
Questions:
- Integer and floating-point formats.
- Describe how integers are represented in the binary format (unsigned integers, 2’s complement).
- What is the difference between integer sign- and zero-extension?
- What is the difference between arithmetical and logical shift?
- What is integer overflow?
- Explain the floating-point format (sign, exponent, fraction). Describe single and double precision.
- What is implicit
1.
in fraction? - Why exponents are biased and what is bias?
- What are floating-point overflow and underflow?
- Pipeline.
- Describe the concept of pipeline.
- List the 5 stages and give brief descriptions for them.
- What pipeline hazards are?
- List the types of hazards and the ways to prevent them (with brief definitions).
- Give an example of a hazard situation and how it can be handled.
- What is branch prediction is needed for?
- How the loop unrolling optimization can help improve pipeline performance?
- Caches.
- Give a brief definition of a cache. Why do we need it?
- Explain how caching works (block, index, tag, valid bit, dirty bit).
- Give the definition of associativity (direct-mapped, set associative, fully associative).
- What is the difference between write-through and write-back?
- What is replacement policy (what types of policy do you know)?
- How many cache levels are typical for modern processors?
- What problem can caches create for multicore processors?
- Interrupts.
- Give a brief definition of an interrupt.
- For what reasons can it be raised (list the types of interrupts you know)?
- Briefly explain how an interrupt handler is implemented (what main actions does performs).
- List the main CSR registers used for interrupt handling and briefly explain their purposes.
- Explain the idea of vectored interrupt handling.
Part 2. Programming Task
Write a RISC-V assembly program that implements function f(x)
according
to the specified formula (individual for each of the students).
The task is split into 7 subtasks (steps).
This is done to be able to evaluate incomplete solutions.
Assessment criteria:
- Tasks 1-4 (full solution) give 1 points each.
- Tasks 5-7 (full solution) give 2 points each.
- Full solution of all tasks gives 10 points.