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.

How to find number of clock buffers in a given rectangular region of core?

Status
Not open for further replies.

kirangu

Junior Member level 2
Joined
Jun 17, 2011
Messages
24
Helped
0
Reputation
0
Reaction score
0
Trophy points
1,281
Activity points
1,413
How to write a db tcl script in cadence to find the number of clock buffers in a given rectangular box(area or region of core),
Also highlight all these clock buffers in that rectangular region in GUI
 

You can try using the saveClockBuffers or the displayClockMesh command. You can specify the clock domain for which you need the buffers.

---------- Post added at 07:24 ---------- Previous post was at 05:51 ----------

Something along these lines (with the db commands):
dbget [dbQuery -area {27.436 111.547 51.035 125.870 }].cell.name

Replace the coordinates with yours (lower x,y upper x,y). This will return cell names with all the buffers. You will have to postprocess this list to filter out the clock buffers in the selected region. Or check the dbget command. Use the following to check for dbget options:

dbget [dbQuery -area {27.436 111.547 51.035 125.870 }].??
 

Status
Not open for further replies.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top