Sign in

username:

password:



Not a member?

Search Comp.Arch.FPGA



Search tips

fpga by Keywords

Altera | ASIC | CPLD | Cyclone | DCM | DDR | DSP | Ethernet | ISE | JTAG | Linux | LVDS | Microblaze | ML310 | Modelsim | NIOS | OPB | PCI | Quartus | RocketIO | SDRAM | Spartan | Spartan3 | SRAM | Stratix | Verilog | VHDL | Virtex | Virtex-4 | Virtex-II | Xilinx | XST

Ads

See Also

DSPEmbedded SystemsElectronics

Comp.Arch.FPGA | Xilinx ISE Webpack and Pipeline Optimization

There are 6 messages in this thread.

You are currently looking at messages 0 to 6.

Xilinx ISE Webpack and Pipeline Optimization - Tim Wescott - 2010-08-03 13:25:00

Here's a naive question, from a sometime FPGA
user:

A long time ago, a friend of mine who does _real_ digital design work 
was telling me how cool the (then new) Mentor tools were, because you 
could do a whole bunch of natural-looking combinational Verilog code in 
a module, then at the very end you could put in a bunch of register 
delays, and the tools would figure out how to distribute the delays in 
your combinational code to get a nicely pipelined bit of logic.

Has this nifty technology migrated into Xilinx tools?  Or if I need 
pipelining, do I need to figure it out myself?

-- 

Tim Wescott
Wescott Design Services
http://www.wescottdesign.com

Do you need to implement control loops in software?
"Applied Control Theory for Embedded Systems" was written for you.
See details at http://www.wescottdesign.com/actfes/actfes.html



Re: Xilinx ISE Webpack and Pipeline Optimization - Rob Gaddi - 2010-08-03 13:32:00

On 8/3/2010 10:25 AM, Tim Wescott wrote:
> Here's a naive question, from a sometime FPGA user:
>
> A long time ago, a friend of mine who does _real_ digital design work
> was telling me how cool the (then new) Mentor tools were, because you
> could do a whole bunch of natural-looking combinational Verilog code in
> a module, then at the very end you could put in a bunch of register
> delays, and the tools would figure out how to distribute the delays in
> your combinational code to get a nicely pipelined bit of logic.
>
> Has this nifty technology migrated into Xilinx tools? Or if I need
> pipelining, do I need to figure it out myself?
>

Theoretically yes, practically I've had great difficulty getting the 
tools to distribute any more than one level of pipeline delay.

-- 
Rob Gaddi, Highland Technology
Email address is currently out of order

Re: Xilinx ISE Webpack and Pipeline Optimization - Manny - 2010-08-03 16:15:00

On Aug 3, 6:25=A0pm, Tim Wescott
<t...@seemywebsite.com> wrote:
> Here's a naive question, from a sometime FPGA user:
>
> A long time ago, a friend of mine who does _real_ digital design work
> was telling me how cool the (then new) Mentor tools were, because you
> could do a whole bunch of natural-looking combinational Verilog code in
> a module, then at the very end you could put in a bunch of register
> delays, and the tools would figure out how to distribute the delays in
> your combinational code to get a nicely pipelined bit of logic.
>
> Has this nifty technology migrated into Xilinx tools? =A0Or if I need
> pipelining, do I need to figure it out myself?

You have to always be cautious of what the tools can or can not do for
you. My experience tells me that cheap tools are better off fed the
design with a spoon. Then comes a host of other problems to do with
bugs everywhere, e.g. a design with a MACC has to be broken into
separate multiply and accumulate blocks and then retimed. Pure joy!

-Momo
______________________________
Join the blogging team on FPGARelated.com and earn rewards! Details Here.

Re: Xilinx ISE Webpack and Pipeline Optimization - Steve Pope - 2010-08-03 16:40:00

On Aug 3, 6:25 pm, Tim Wescott
<t...@seemywebsite.com> wrote:

> Here's a naive question, from a sometime FPGA user:
>
> A long time ago, a friend of mine who does _real_ digital design work
> was telling me how cool the (then new) Mentor tools were, because you
> could do a whole bunch of natural-looking combinational Verilog code in
> a module, then at the very end you could put in a bunch of register
> delays, and the tools would figure out how to distribute the delays in
> your combinational code to get a nicely pipelined bit of logic.
>
> Has this nifty technology migrated into Xilinx tools?  Or if I need
> pipelining, do I need to figure it out myself?

Register retiming.  All the synthesizers do this.

Steve

Re: Xilinx ISE Webpack and Pipeline Optimization - Andy - 2010-08-03 18:09:00

But how many re-time over more than one clock
cycle? Many can only
move logic +/- 1 clock cycle, and some don't do it unless the original
design won't meet timing.

Andy
______________________________
Join the blogging team on FPGARelated.com and earn rewards! Details Here.

Re: Xilinx ISE Webpack and Pipeline Optimization - emeb - 2010-08-03 18:43:00

On Aug 3, 1:40=A0pm, spop...@speedymail.org
(Steve Pope) wrote:
> On Aug 3, 6:25=A0pm, Tim Wescott <t...@seemywebsite.com> wrote:
>
> > Here's a naive question, from a sometime FPGA user:
>
> > A long time ago, a friend of mine who does _real_ digital design work
> > was telling me how cool the (then new) Mentor tools were, because you
> > could do a whole bunch of natural-looking combinational Verilog code in
> > a module, then at the very end you could put in a bunch of register
> > delays, and the tools would figure out how to distribute the delays in
> > your combinational code to get a nicely pipelined bit of logic.
>
> > Has this nifty technology migrated into Xilinx tools? =A0Or if I need
> > pipelining, do I need to figure it out myself?
>
> Register retiming. =A0All the synthesizers do this.

My favorite tool for this was something Synopsys sold years ago called
'Module Compiler'. Apparently they bought another company that
actually made this, but my first exposure was at Synopsys. It used a
'Verilog-like' language to specify the logical & mathematical
operations without any pipelining. The only registers you'd put in
explicitly were those required for state (like accumulators, state
machines, etc). It used the target library capabilities to do all the
pipelining for you, as well as optimizing the logic & math - sort of a
precursor to what became Physical Synthesis. It would spit out a gate-
level netlist for the P/R tools and behavioral Verilog for
verification. Amazing stuff.

Apparently most of Module Compiler was rolled into Design Compiler a
while back. Don't know what became of it beyond that.

Eric
______________________________
Join the blogging team on FPGARelated.com and earn rewards! Details Here.