The throughput of a superscalar processor depends on the number of instructions it can issue per clock cycle. Early superscalar processors were able to issue two instructions per clock. Later processors could issue four instructions per clock. Although massive progress has been made in processor parameters such as clock speed or cache size, it is unlikely that we will see 64?way or 128?way superscalar processors. Why?

What will be an ideal response?


Throughout much of computing the law of diminishing returns applies. Superscalar processing relies on taking a
handful of instructions and executing them in parallel without changing the meaning (semantics) of the code. It
is often easy to find two instructions that can be executed in parallel without dependencies. It get progressively
more difficult as the number of contenders for parallel execution increases.

Computer Science & Information Technology

You might also like to view...

The layers in the OSI model are:

a. Physical, data link, network/Internet, transport, session, application b. Physical, data link, network, transport, socket, presentation, application c. Physical, data link, network/Internet, transport, application d. Physical, data link, network, transport, session, presentation, application

Computer Science & Information Technology

Select the item below that does not belong in a consistent web site design.

a. the same fonts on each content page b. the same logo in the same location on each content page c. a similar navigation area on each content page d. a different background color on each page

Computer Science & Information Technology

What is the value returned when the integer 3 is the argument to the factorial method?

The following code for the method factorial() applies to the next two questions: ``` public static double factorial (double n) { if (n == 0) { return 1; } else { return n * factorial(n-1); } } ``` (a) 2 (b) 4 (c) 6 (d) 8

Computer Science & Information Technology

What is the Linux operating system?

What will be an ideal response?

Computer Science & Information Technology