• Skip to main content
  • Skip to search
  • Skip to footer
Cadence Home
  • This search text may be transcribed, used, stored, or accessed by our third-party service providers per our Cookie Policy and Privacy Policy.

  1. Community Forums
  2. Logic Design
  3. RTL compiler to minimize area

Stats

  • Locked Locked
  • Replies 4
  • Subscribers 62
  • Views 17445
  • Members are here 0
This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

RTL compiler to minimize area

Hamzah
Hamzah over 12 years ago

Hello all,

 

I am using RTL compiler to synthesize a pure combiniational digital designs. I would like to know how to constraints the synthesis tool to minimize the Area as its first periority or even may be the only periority.

 

The shell script I use to synthesis my designs is:

#/bin/sh

SYN_ID=$2

FILE=$1

SYN_TOOL=rc

RC_REPORT=/tmp/syn.$SYN_ID.rpt

AREA=/tmp/syn.$SYN_ID.area

$SYN_TOOL > $RC_REPORT << EOF

set_attribute lib_search_path ../../../Digital_Standard_Cell_Library/synopsys/models

set_attribute library {saed90nm_typ.lib}

read_hdl $FILE

set_attribute avoid true LNANDX1 LNANDX2

elaborate

synthesize -to_generic

synthesize -to_mapped

synthesize -to_mapped

synthesize -to_mapped

synthesize -to_mapped

synthesize -to_mapped -effort high

write_hdl -mapped > /tmp/syn.$SYN_ID.v

echo [get_attribute area /designs/*]> $AREA

quit

EOF

 How can I constraint the RC to minimize the area as much as possible?

Alos, I have some designs that desribes in truth tables format (Berkeley PLA format), How can I read these designs with cadence?

 

Thanks a lot. 

  • Cancel
Parents
  • grasshopper
    grasshopper over 12 years ago

    Hi Hamza,

     if area is all you care about, then you may as well not read any timing constraints. RC always reclaims area since the assumption is no user want there design to be bigger than it needs to be :)

     I noticed your flow does full mapping 5 times. Doing that even once an getting any meaningful improvement to area would be considered a bug. It is either unnecessary, a bug, or you are running an old version of the tools. A question I always ask is, do you expect the design to be smaller than it already is. Unfortunately, wanting it to be smaller is not enought to make it smaller...

      As per Berkley PLA format, I do not have an answer for you altough I seem to recall a similar question a few years back in some EDA forum. A quick search may yield you some results

     gh-

    • Cancel
    • Vote Up 0 Vote Down
    • Cancel
Reply
  • grasshopper
    grasshopper over 12 years ago

    Hi Hamza,

     if area is all you care about, then you may as well not read any timing constraints. RC always reclaims area since the assumption is no user want there design to be bigger than it needs to be :)

     I noticed your flow does full mapping 5 times. Doing that even once an getting any meaningful improvement to area would be considered a bug. It is either unnecessary, a bug, or you are running an old version of the tools. A question I always ask is, do you expect the design to be smaller than it already is. Unfortunately, wanting it to be smaller is not enought to make it smaller...

      As per Berkley PLA format, I do not have an answer for you altough I seem to recall a similar question a few years back in some EDA forum. A quick search may yield you some results

     gh-

    • Cancel
    • Vote Up 0 Vote Down
    • Cancel
Children
No Data

Community Guidelines

The Cadence Design Communities support Cadence users and technologists interacting to exchange ideas, news, technical information, and best practices to solve problems and get the most from Cadence technology. The community is open to everyone, and to provide the most value, we require participants to follow our Community Guidelines that facilitate a quality exchange of ideas and information. By accessing, contributing, using or downloading any materials from the site, you agree to be bound by the full Community Guidelines.

© 2025 Cadence Design Systems, Inc. All Rights Reserved.

  • Terms of Use
  • Privacy
  • Cookie Policy
  • US Trademarks
  • Do Not Sell or Share My Personal Information