Zim Brightwood
Quiz von , erstellt am more than 1 year ago

Unit 2 of UBC's CS313 course. Get some alcohol.

48
0
0
Zim Brightwood
Erstellt von Zim Brightwood vor mehr als 7 Jahre
Schließen

[Final Study] Unit 2 Pipelined CPU

Frage 1 von 49

1

Throughput is

Wähle eine der folgenden:

  • the rate at which instructions leave the pipeline

  • total time it takes an instruction to be processed by a stage

  • the rate at which instructions move to the next register

  • total time it takes an instruction to be processed by the entire pipeline

Erklärung

Frage 2 von 49

1

Latency is

Wähle eine der folgenden:

  • total time it takes an instruction to be processed by the entire pipeline

  • the rate at which instructions leave the pipeline

  • the rate at which instructions move to the next register

  • total time it takes an instruction to be processed by a stage

Erklärung

Frage 3 von 49

1

Pretend the pipeline is a cafeteria line in prison. Who is throughput and who is latency?

Wähle eine der folgenden:

  • Throughput is the security guard concerned with how often people are leaving the line so nobody shanks anybody. Latency is BUBBA watching Skinny Pete make his way through the line so he can shank him after he gets his food.

  • Throughput is the warden watching the prisoners out in the field and latency is the secretary having an affair with the gardener *gasp*~

  • Throughput is the rate at which the soap leaves a prisoners hand in the showers and latency is the total time it takes to pick it up

Erklärung

Frage 4 von 49

1

Pipeline registers are placed , those registers store , each stage executes working on a different instruction

Klicke und ziehe, um den Text zu vervollständigen.

    between each stage
    after each stage
    before each stage
    inputs for that stage
    outputs for that stage
    inputs for the next stage
    in parallel
    sequentially

Erklärung

Frage 5 von 49

1

And instruction is when it is currently being executed by the pipeline. Once the instruction completes the pipeline, it is .

Klicke und ziehe, um den Text zu vervollständigen.

    in flight
    executing
    latent
    active
    retired
    finished
    complete
    ready

Erklärung

Frage 6 von 49

1

The pipeline instructions are executed in order

Wähle eins der folgenden:

  • WAHR
  • FALSCH

Erklärung

Frage 7 von 49

1

Instruction-level parallelism exists between a pair of instructions if

Wähle eine der folgenden:

  • their execution order does not matter

  • their execution order matters

Erklärung

Frage 8 von 49

1

The pipeline requires some parallelism

Wähle eins der folgenden:

  • WAHR
  • FALSCH

Erklärung

Frage 9 von 49

1

Dependencies exist if execution order doesn't matter

Wähle eins der folgenden:

  • WAHR
  • FALSCH

Erklärung

Frage 10 von 49

1

Consider the variables a and b. A causal dependency is defined as A<B (Instruction A immediately precedes B) if

Wähle eine der folgenden:

  • B reads value written by A
    Example:
    a = 1;
    b = a;

  • B write to visible location written by A
    Example:
    a = 1;
    a = 2;

  • B write to a location read by A
    Example:
    b = a;
    a = 1;

Erklärung

Frage 11 von 49

1

Consider the variables a and b. An output dependency is defined as A<B (Instruction A immediately precedes B) if

Wähle eine der folgenden:

  • B write to visible location written by A
    Example:
    a = 1;
    a = 2;

  • B reads value written by A
    Example:
    a = 1;
    b = a;

  • B write to a location read by A
    Example:
    b = a;
    a = 1;

Erklärung

Frage 12 von 49

1

Consider the variables a and b. An anti dependency is defined as A<B (Instruction A immediately precedes B) if

Wähle eine der folgenden:

  • B write to a location read by A
    Example:
    b = a;
    a = 1;

  • B reads value written by A
    Example:
    a = 1;
    b = a;

  • B write to visible location written by A
    Example:
    a = 1;
    a = 2;

Erklärung

Frage 13 von 49

1

parallelism is how the programmer tells the system that two pieces of code can execute in parallel. parallelism is the system actually executing two pieces of code in parallel.

Klicke und ziehe, um den Text zu vervollständigen.

    Expressing
    Adding
    Mechanizing
    Conflating
    Eating
    Exploiting
    Removing
    Smelling
    Tangential Execution

Erklärung

Frage 14 von 49

1

A pipeline hazard exists when

Wähle eine der folgenden:

  • the processor's execution would violate a data or control dependency

  • the processor's execution would support a data or control dependency

  • the processor's execution would cause a data or control dependency

  • the processor's execution would execute a data or control dependency

Erklärung

Frage 15 von 49

1

We should detect pipeline hazards

Wähle eins der folgenden:

  • WAHR
  • FALSCH

Erklärung

Frage 16 von 49

1

Stalling is one way to handle pipeline hazards

Wähle eins der folgenden:

  • WAHR
  • FALSCH

Erklärung

Frage 17 von 49

1

A is holding an instruction for an extra cycle.
A is when a pipeline stage is forced to do nothing.

Klicke und ziehe, um den Text zu vervollständigen.

    pipeline stall
    pipeline bubble
    pipeline hazard
    pipeline stage
    pipeline overhead

Erklärung

Frage 18 von 49

1

The only data hazards in the Y86 Pipeline are causal hazards on register file

Wähle eins der folgenden:

  • WAHR
  • FALSCH

Erklärung

Frage 19 von 49

1

The only control hazards in the Y86 Pipeline are conditional jumps

Wähle eins der folgenden:

  • WAHR
  • FALSCH

Erklärung

Frage 20 von 49

1

To prevent a data hazard by stalling, we can

Wähle eine der folgenden:

  • read registers in decode that are written by instructions in E, M, or W and then stall the instruction in decode until writer is retired

  • read registers in fetch that are written by instructions in E, M, or W and then stall the instruction in fetch until writer is retired

  • read registers in execute that are written by instructions in E, M, or W and then stall the instruction in execute until writer is retired

Erklärung

Frage 21 von 49

1

How would we resolve a conditional jump control hazard by stalling?

Wähle eine der folgenden:

  • stall fetch until jump exits execute

  • stall execute until jump exits decode

  • stall fetch and execute until jump exits decode

  • stall fetch, decode, and execute until jump exits memory

  • stall fetch, decode, execute, and memory until jump exits write back

  • just stall everything after fetch indefinitely and go finish off a bottle of wine in one go

Erklärung

Frage 22 von 49

1

How would we resolve a return control hazard by stalling?

Wähle eine der folgenden:

  • stall fetch until return exits memory

  • stall decode until return exits memory

  • stall fetch and decode until return exits memory

  • stall fetch, decode, and execute until return exits memory

  • stall fetch, decode, execute, and memory until return exits memory

  • return to cpsc313 in the summer after you fail this midterm

Erklärung

Frage 23 von 49

1

Check all the statements that are true about the pipeline-control module

Wähle eine oder mehr der folgenden:

  • it's a hardware component separate from the 5 stages

  • examines values across every stage

  • decides whether stage should stall or bubble

Erklärung

Frage 24 von 49

1

Data forwarding is a mechanism that forwards values from later pipeline stages to earlier ones

Wähle eins der folgenden:

  • WAHR
  • FALSCH

Erklärung

Frage 25 von 49

1

Where does data forwarding forward its data to?

Wähle eine oder mehr der folgenden:

  • D

  • W

  • M

  • E

  • F

Erklärung

Frage 26 von 49

1

Where does data forward forward its data from?

Wähle eine oder mehr der folgenden:

  • W - new value from memory or ALU

  • M - new value read from memory or from ALU

  • E - new value from ALU

  • D - new value from registers

  • F - new value from PC determined instruction

Erklärung

Frage 27 von 49

1

Which of these are data hazards?

Wähle eine oder mehr der folgenden:

  • register-register hazard

  • load-use hazard

  • register-memory hazard

  • memory-memory hazard

  • use-use hazard

  • load-load hazard

Erklärung

Frage 28 von 49

1

Which of these is a register-register hazard?

Wähle eine der folgenden:

  • irmovl $1, %eax
    addl %eax, %ebx

  • irmovl $1, %ecx
    addl %eax, %ebx

Erklärung

Frage 29 von 49

1

How do we handle a register-register hazard with data forwarding?

Wähle eine der folgenden:

  • forward to D from E, M, or W

  • forward to F from E, M, or W

  • stall one cycle, then forward to D from E, M, or W

  • stall one cycle, then forward to F from D, E, M, or W

  • stall one cycle, then forward to F from E, M, or W

  • forward to F from D, E, M, or W

Erklärung

Frage 30 von 49

1

Which of these is a load-use hazard?

Wähle eine der folgenden:

  • mrmovl (esi), %eax
    addl %eax, %ebx

  • rmmovl %eax, (esi)
    addl %eax, %ebx

Erklärung

Frage 31 von 49

1

How would we handle a load-use hazard?

Wähle eine der folgenden:

  • Stall use one cycle, forward to D from M or W

  • Stall use one cycle, forward to D from E or M

  • Stall use one cycle, forward to E from D, M, or W

  • Stall use one cycle, forward to E from M or W

Erklärung

Frage 32 von 49

1

Jump prediction is not suitable for resolving conditional-jump hazards

Wähle eins der folgenden:

  • WAHR
  • FALSCH

Erklärung

Frage 33 von 49

1

We know whether the jump is taken or not taken once the jump finishes in stage .

Klicke und ziehe, um den Text zu vervollständigen.

    E
    D
    M
    W

Erklärung

Frage 34 von 49

1

valC is the address for the jump as if it were and valP is the address for the jump as if it were .

Klicke und ziehe, um den Text zu vervollständigen.

    not taken
    taken

Erklärung

Frage 35 von 49

1

When a mis-predicted jump is in M, what should we do?

Wähle eine der folgenden:

  • shootdown D and E to prevent them from doing damage

  • shootdown F and D to prevent them from doing damage

  • shootdown M and W to prevent them from doing damage

Erklärung

Frage 36 von 49

1

The homework in this course is much too long

Wähle eins der folgenden:

  • WAHR
  • FALSCH

Erklärung

Frage 37 von 49

1

We could avoid stalling in a load-use hazard by forwarding m.valM to the beginning of E

Wähle eins der folgenden:

  • WAHR
  • FALSCH

Erklärung

Frage 38 von 49

1

We could have one fewer bubble in a misprediction if we compute when conditional jump is in M, reading m.bch (the branch condition)

Wähle eins der folgenden:

  • WAHR
  • FALSCH

Erklärung

Frage 39 von 49

1

In regards to static jump prediction, what could the compiler know?

Wähle eine oder mehr der folgenden:

  • a jump's taken tendency

  • for loops, it can decide to use a continue condition or exit condition

  • for if statements it might be able to spot error tests

  • what it sees in the program text

Erklärung

Frage 40 von 49

1

The compiler cares about the ISA's jump predictions

Wähle eins der folgenden:

  • WAHR
  • FALSCH

Erklärung

Frage 41 von 49

1

How do we optimize handling the return hazard?

Wähle eine der folgenden:

  • Keep a stack of return addresses for future use

  • Guess the return address based on the value in predPC

  • Guess the return address based on the value in PC

  • Guess the return address based on the valP in D

Erklärung

Frage 42 von 49

1

Y86 has indirect jumps

Wähle eins der folgenden:

  • WAHR
  • FALSCH

Erklärung

Frage 43 von 49

1

Indirect jumps are needed for polymorphic dispatch

Wähle eins der folgenden:

  • WAHR
  • FALSCH

Erklärung

Frage 44 von 49

1

CPI =

Wähle eine der folgenden:

  • totalCycles / instructionRetiredCycles

  • instructionRetiredCycles / totalCycles

Erklärung

Frage 45 von 49

1

What are the tendencies of deeper pipelines?

Wähle eine oder mehr der folgenden:

  • reduce clock period

  • increase CPI

  • makes stalling harder to avoid

Erklärung

Frage 46 von 49

1

Which of these are attributes of super-scalar?

Wähle eine oder mehr der folgenden:

  • multiple pipelines that run in parallel

  • issue multiple instructions on each cycle

  • instructions execute in parallel and can even bypass each other

  • if I shut my eyes tight enough, will the midterm disappear?

Erklärung

Frage 47 von 49

1

What does hyper-threading consist of? (Only one of the following is correct)

Wähle eine oder mehr der folgenden:

  • OS loads multiple runnable threads into CPU, usually from the same process

  • CPU does fast switching between threads to hide memory latency

Erklärung

Frage 48 von 49

1

What is multi-core?

Wähle eine oder mehr der folgenden:

  • multiple CPUs per chip, each pipelined, super-scalar, etc

  • CPU's execute independent threads from possibly different processes

Erklärung

Frage 49 von 49

1

How could Mike do this to us?

Wähle eine der folgenden:

  • Sadism

  • Also sadism

  • And sadism

  • All of the above

Erklärung