What is the difference between superscalar and pipelined architectures?

13,581

The wikipedia articles for pipeline and supercalar explain these quite good.

Simply put, a pipeline starts the execution of the next instruction before the first has completed - but instructions are executed still in series and in order.

A superscalar architecture can start two or more instructions in parallel in one core, and independent instructions may get executed out-of-order.

Share:
13,581
Admin
Author by

Admin

Updated on September 18, 2022

Comments

  • Admin
    Admin over 1 year

    They seem exactly the same to me, but the wikipedia page on Superscalar CPU architectures says "While a superscalar CPU is typically also pipelined, pipelining and superscalar architecture are considered different performance enhancement techniques."