Go Back   Velocity Reviews > Newsgroups > VHDL
User Name
Password
Register FAQ Members List Calendar Search Today's Posts Mark Forums Read

Reply

VHDL - what do you guys do if Synopsys DC says it runs out of memory?

 
Thread Tools Search this Thread
Old 10-02-2003, 03:54 AM   #1
Default what do you guys do if Synopsys DC says it runs out of memory?


Dear all,

This might be more towards synthesis...

I keep getting "run out of memory" error message from my Synopsys Design
Compiler... The strangest thing is that the same design, sometimes can pass,
sometimes will fail "running out of memory"... Sometimes the "memory value"
is 4GB, sometimes it is 1GB...

Here is my script file and here is my error message... What do you guys do
when you meet with such problem? Could you share with some of your
experiences?

Thanks a lot

-Walala

---------------------------------------------------------
Script:

$SYNOPSYS/sparcOS5/syn/bin/dc_shell-t <<!
redirect myidct_zero1cmu.log {
analyze -format vhdl -lib WORK {myidct_zero1cmu.vhd}
elaborate myidct_zero1cmu -arch "flex" -lib WORK -update
ungroup -all -flatten
create_clock "CLK" -name "CLK" -period 60
compile -map_effort medium -area_effort high
current_design .
report_timing -path full -delay max -max_paths 1 -nworst 1 >
reports/\$current_design.rep
report_area >> reports/\$current_design.rep
report_resources -hierarchy >> reports/\$current_design.rep
write -format vhdl -hierarchy -output "mapped/\$current_design.vhd"
write -format verilog -hierarchy -output "mapped/\$current_design.v"
echo "\nScript Done\n"
echo "\nChecking Design\n"
check_design
}
!

-------------------------------------------------------------

Error message:

90 > ./scripts/myidct_zero1cmu.scr

Behavioral Compiler (TM)
DC Professional (TM)
DC Expert (TM)
DC Ultra (TM)
VHDL Compiler (TM)
HDL Compiler (TM)
Library Compiler (TM)
Power Compiler (TM)
DFT Compiler (TM)
BSD Compiler
DesignWare Developer (TM)
DesignPower (TM)

Version 2001.08-SP2 for sparcOS5 -- Feb 05, 2002
Copyright (c) 1988-2001 by Synopsys, Inc.
ALL RIGHTS RESERVED

This program is proprietary and confidential information of Synopsys, Inc.
and may be used and disclosed only as authorized in a license agreement
controlling such use and disclosure.

Initializing...
dc_shell-t>

Out of memory.
(Memory allocated = 4103759 K bytes)





walala
  Reply With Quote
Old 10-02-2003, 09:47 AM   #2
Tuukka Toivonen
 
Posts: n/a
Default Re: what do you guys do if Synopsys DC says it runs out of memory?
In article <blg415$2rn$>, walala wrote:
> I keep getting "run out of memory" error message from my Synopsys Design


- Check if there are some memory limits that could be changed. In bash,
ulimit -a
ulimit -S -d 8000000
In tcsh, the command is different (man tcsh, search for "limit").
- Can you increase swap size?
- Can you synthesize your design in small parts?
- Can you change/lower synthesizer optimization level?
- Are you using some structures in VHDL that take lots of space
(e.g. generate for ...)? Could they be written differently?

> ungroup -all -flatten


- Would it help not to use "flatten"?

> compile -map_effort medium -area_effort high


- Would it help to use low effort?


Tuukka Toivonen
  Reply With Quote
Old 10-02-2003, 07:23 PM   #3
Richard Iachetta
 
Posts: n/a
Default Re: what do you guys do if Synopsys DC says it runs out of memory?
In article <blg415$2rn$>, says...
> Dear all,
>
> This might be more towards synthesis...
>
> I keep getting "run out of memory" error message from my Synopsys Design
> Compiler... The strangest thing is that the same design, sometimes can pass,
> sometimes will fail "running out of memory"... Sometimes the "memory value"
> is 4GB, sometimes it is 1GB...
>
> Here is my script file and here is my error message... What do you guys do
> when you meet with such problem? Could you share with some of your
> experiences?
>
> Thanks a lot
>
> -Walala


Walala, you should probably Synopsys rather than comp.lang.vhdl. Just email
. You may need to switch to the 64-bit version of DC.

--
Rich Iachetta
I do not speak for IBM


Richard Iachetta
  Reply With Quote
Old 10-03-2003, 11:41 AM   #4
Renaud Pacalet
 
Posts: n/a
Default Re: what do you guys do if Synopsys DC says it runs out of memory?
walala a écrit :
> Dear all,
>
> This might be more towards synthesis...
>
> I keep getting "run out of memory" error message from my Synopsys Design
> Compiler... The strangest thing is that the same design, sometimes can pass,
> sometimes will fail "running out of memory"... Sometimes the "memory value"
> is 4GB, sometimes it is 1GB...
>
> Here is my script file and here is my error message... What do you guys do
> when you meet with such problem?


Modify your design. You're trying to synthesize flat a brute force
boolean description of an 8x8 IDCT. Most synthesizers will run out of
memory. If one doesn't then it will, once you'll add the IQUANT module
and expect some logic optimization between the two modules IDCT is a
quite regular algorithm, it's very easy to describe in a way that most
optimizers will optimize very fast without any memory problem. Try a
distributed arithmetic architecture. I worked for years on MPEG
implementations, rewieved dozens of papers about "the best IDCT
implementation in the world" and still believe distributed arithmetic is
preferable, whatever your cost function is.

Best regards,
--
Renaud Pacalet, GET/ENST/COMELEC/LabSoC
Institut Eurecom BP 193, 2229 route des Cretes
F-06904 Sophia-Antipolis Cedex
Tel : +33 (0) 4 9300 2770
Fax : +33 (0) 4 9300 2627
Fight Spam! Join EuroCAUCE: http://www.euro.cauce.org/



Renaud Pacalet
  Reply With Quote
Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off

Similar Threads
Thread Thread Starter Forum Replies Last Post
OCZ 6GB Triple-Channel 1333 MHz DDR3 Memory Kit Admin Front Page News 0 02-16-2009 01:27 PM
Dazzle Box... swt458 Hardware 2 01-15-2008 06:06 AM
memory upgrade -D- A+ Certification 1 02-03-2007 01:01 AM
Re: What memory to use? me A+ Certification 0 12-14-2004 03:33 AM
Re: Memory stick question Nildram A+ Certification 1 01-14-2004 02:41 PM




SEO by vBSEO 3.3.2 ©2009, Crawlability, Inc.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46