Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

Parallelism vs Pipeline in RTL

Status
Not open for further replies.

cafukarfoo

Full Member level 3
Joined
Jul 25, 2007
Messages
170
Helped
8
Reputation
16
Reaction score
5
Trophy points
1,298
Activity points
2,510
Hi Sir/Madam,

Can anyone explain the different between these parallelism and pipeline concept?

Thanks in advance for your time.
 

If you have very long timing path then you can split it into several pipeline stages by adding registers. But if you do that you will lose clock cycles and may be will not have any increase in performance.

Now let consider 2 examples:

1.Your inputs depend on outputs. It means that you should have valid output results before next inputs process. In this case one additional pipe stage will decrease your critical timing path but as you can not process input before having valid output you will spend one additional clock cycle. For example you have 10 bytes data. Your module reads one byte in one clock cycle modifies them and puts to output. Without pipeline register you will finish processing after 10 clock cycles but now you need 20 clock cycle to process all data.
2.Your inputs don't depend on outputs. It means that you can process next input without waiting valid output results. The first byte will go to output after 2 clock cycle due to one pipe stage. But for processing next input your module dose not wait for output and can get data with every clock cycle. And now to process all data you need only 11 clock cycle. This additional clock cycle is called latency.

I hope this will help you.
Bests,
Tiksan,
http://syswip.com/
 

    cafukarfoo

    Points: 2
    Helpful Answer Positive Rating
Status
Not open for further replies.

Similar threads

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top