首页 > 技术文章 > Methods to reduce the number of pipeline stages

cpsmile 2018-03-24 16:01 原文

Several techniques have been proposed to reduce the number of pipeline stages.

We categorize them into two types based on their design philosophy: stage merging and stage bypassing.

 

Stage merging combines multiple stages of the traditional design into a single stage by using faster components or through speculation.

Faster components: allows the merging of VA and SA, LT and ST into the same stage

Speculation:  With it, a flit ignores the dependence between various steps and speculatively(预测) executes multiple steps in parallel . If speculation fails, which rarely happens, the router needs to roll back and reexecute the steps sequentially.

 

Stage bypassing skips pipeline stages in intermediate routers when there is no load ahead or by setting up downstream routers before a flit arrives.

for example, ST and LT are merged.

Multiple intermediate routers are bypassed when there is no contentions in an advanced design SMART NOC.

 

referenced in 

Reducing wire and energy overheads of the SMART NoC using a setup request network

 

推荐阅读