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.

dc_shell error: loop exceeded maximum iteration limit

Status
Not open for further replies.

lizeer

Newbie level 5
Joined
Sep 13, 2005
Messages
9
Helped
0
Reputation
0
Reaction score
0
Trophy points
1,281
Activity points
1,359
rtl code;

parameter word_depth = 2048;

task x_mem;
integer n;
begin
for (n=0; n<word_depth; n=n+1)
mem[n]=wordx;
end
endtask


when I try to synthesis this code, dc_shell will give me this error:

Error: /project/gprs/asic/synthesis/TOP/APIU/source/RA2SHD_32x2048.v:748: Loop exceeded maximum iteration limit. (ELAB-900)

Does this means that synthesis cannot support the huge memory so I have to change may rtl code to split up the memory into smaller size.
 

elab-900

if the code follows the RTL guidelines then only it is synthesizable.

for loop is not synthesisable. then how DC can synthesize that code?

Added after 30 seconds:


if the code follows the RTL guidelines then only it is synthesizable.

for loop is not synthesisable. then how DC can synthesize that code?
 

dc_shell loop

1) Yes. Its' the capacity limit of Design Compiler.

If the size of memory array is too large, then DC may have problem.
-------------------------------------------------------------------------------------
2) The way of Memory implementation depends on its size, because it impacts the core area a lot.

In this case, the RTL code of this memory should only act as a "simulation" model. It is only the "behavior" model.
There should have other models, such as .db, .lib, .lef, or .plib, which used for implementation. And you do not have to synthesize this one !
 

Status
Not open for further replies.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top