Wednesday, December 03, 2008     Register | Login | Search | Contact Us
     

Many of you already received communications about the move of the Cadence user community into cadence.com. And many of you have already joined, with over 4000 registrations in the first two weeks.

The new Cadence Community enhances the ability of Cadence users to connect and collaborate. In addition to moving the community into cadence.com -- enabling single sign-on for community, Sourcelink and Cadence events -- the new site is organized around nine technology segments, giving you easy access to product information, training, forums and blogs. Some of the new features include:
  • Ability to respond to posts via e-mail
  • Technology-specific blogs
  • Latest Web 2.0 social networking capabilities
  • Public profile options
  • Private messaging
  • Friends lists
Visit the new Cadence Community today at www.cadence.com/community and join the discussions!

Registration note: Due to the scope of the enhancements and the new SSO registration system, we were not able to migrate existing cdnusers.org member accounts. So new registrations are required, but this enables a broader set of functionality we think you'll enjoy.

Forum note: Under the guidance of forum moderators, we have taken the 20+ cdnusers.org forums and consolidated them into 11 forums on the new site. Posts have been brought over so you can leverage that posting history. CDNusers forums will be set to read only starting 7/30, and cdnusers.org will be redirected to the new community on 8/4.

Best regards,
Mike and Tom

Michael A. Catrambone - Steering Committee Chairman
Distinguished Engineer
PCB/Mechanical
UTStarcom, Inc.

Tom Diederich
Cadence Community Manager
Home
Forums
Subject: hoho, Bob, 1 question again for CTS
Posting to forums is available to community members only.
Login or Register
Rate this topic:
   
Author Messages
eminemshow
Posts: 75
Online: User is Offline
5/11/2008 9:36 AM  
1. How can I get all the clock nets in SOC-E. I am using the command 'dbIsNetClock', but it doesn't work. Then I try to specify clock tech file, then change all the clock nets to DEF USE CLOCK, then output DEF, reload the DEF, but 'dbIsNetClock' does not work either. I can write a DB tcl to trace the clock tree, but it is time consuming. How can I do this using FE inherent commands. My SOC-E version is 52USR3.

Thanks in advance!
sudhir.jain
Posts: 3
Online: User is Offline
5/11/2008 10:20 PM  
Hi,

'dbIsNetClock', uses the timing information to tell is a net is clock or not.
You should load the SDC and update the timing before using this command.

Black Lutin
Posts: 11
Online: User is Offline
5/12/2008 12:07 AM  
Hi,

As you read a DEF, the informations are saved on an other property. If you read you SDC and update your timing you may have problem with multimode. So teh better is to make two tests:

Here is my script:

proc userCreateClockList { clockFile {option w} } {
set f [open $clockFile $option]
dbForEachCellNet [dbgTopCell] n {
set netname [dbNetName $n]
if {[dbIsNetClock $n] || [dbIsNetDefInClock $n]} {
puts $f "$netname"
}
}
close $f
}
And so you can use:

userCreateClockList $STM_clockNetsReport "w"

Regards ... Luc ...
eminemshow
Posts: 75
Online: User is Offline
5/12/2008 2:26 AM  
Thank you all! This is really the solution I need.
eminemshow
Posts: 75
Online: User is Offline
5/15/2008 10:14 PM  
Lutin:

I really dont not know why comands like 'dbIsNetClock' and 'dbIsNetDefInClock' doesn't work.
I have to 1st specify clock tree, then saveClockNet, then remark the clock net as 'dbSetIsNetclock'.

BRs
Black Lutin
Posts: 11
Online: User is Offline
5/16/2008 12:34 AM  
Hi,

To access to dbIsNetDefInClock, you need to have run the clcokTreeSynthesis.
To access to dbIsNetClock, you need to have read SDC timing constrain file, and to have run a timing command (to propagate the clock information). So you need at least "report_timing".

Try and let me know ....

Regards .....
Posting to forums is available to community members only.
Login or Register

Forums > Digital IC > Floorplanning, Place and route > hoho, Bob, 1 question again for CTS


ActiveForums 3.6
     
Copyright 2006 Cadence Design Systems, Inc.