2 1 11 Multiple Issue

Поділитися
Вставка
  • Опубліковано 26 гру 2024

КОМЕНТАРІ • 7

  • @juppkutschinski
    @juppkutschinski 2 роки тому +5

    IPC = 1/CPI not IPC = CPI-1 as on one of the later slides.

  • @Ting3624
    @Ting3624 3 роки тому

    Thanks for the video!
    But I am confused @ 15:30
    Why does ADD.D has to wait for LD to commit before writing to CDB? Hasn't the result of ADD.D already been calculated at cc 8 and ready to write to CDB at cc 9?

    • @inccoruptible13
      @inccoruptible13 3 роки тому

      No the result of ADD.D begins at cc8 and writes at cdb at 11 therefore commits at 12. In the video the teacher says "has to wait for the L.D, to begin EX" and also he highlights that it follows the L.D commit stage

  • @kamaleshkhanna4735
    @kamaleshkhanna4735 5 років тому

    DADDI need not stall for a clock cycle because it is a dual-issue superscalar and 2 instructions can be executed in one clock cycle.

    • @TheNewTimeNetwork
      @TheNewTimeNetwork 3 роки тому +2

      The architecture is dual-issue, but it does not have two integer FUs. Furthermore, the integer FU is used for effective address calculation for loads and stores. Therefore, even though DADDI can be issued in the same cycle as the preceding S.D, its execution stalls due to a structural hazard at the integer FU which is occupied with effective address calculation for the S.D.

    • @manojkhatri6537
      @manojkhatri6537 2 роки тому

      @@TheNewTimeNetwork Right, this is the strength of dynamically scheduled processor

  • @deepanshukoshta9284
    @deepanshukoshta9284 4 роки тому

    Subsequent L.D can only start after DADDI broadcasts its result. Am I right?