Slipstream (computer science)

From Wikipedia, the free encyclopedia
Revision as of 17:07, 17 December 2024 by 216.144.168.135 (talk)
(diff) ← Previous revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Script error: No such module "other uses".

  1. REDIRECT Template:More citations needed

A slipstream processor is an architecture designed to reduce the length of a running program by removing the non-essential instructions. It is a form of speculative computing.

Non-essential instructions include such things as results that are not written to memory, or compare operations that will always return true. Also as statistically most branch instructions will be taken it makes sense to assume this will always be the caseScript error: No such module "Unsubst"..

Because of the speculation involved slipstream processors are generally described as having two parallel executing streams. One is an optimized faster A-stream (advanced stream) executing the reduced code, the other is the slower R-stream (redundant stream), which runs behind the A-stream and executes the full code. The R-stream runs faster than if it were a single stream due to data being prefetched by the A-stream effectively hiding memory latency, and due to the A-stream's assistance with branch prediction. The two streams both complete faster than a single stream would. As of 2005, theoretical studiesTemplate:Which have shown that this configuration can lead to a speedup of around 20%.Script error: No such module "Unsubst".

The main problem with this approach is accuracy: as the A-stream becomes more accurate and less speculative, the overall system runs slowerScript error: No such module "Unsubst".. Furthermore, a large enough distance is needed between the A-stream and the R-stream so that cache misses generated by the A-stream do not slow down the R-stream.

References