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.

[SOLVED] cells with number of pins > 6

Status
Not open for further replies.

nnpruthviraj

Newbie
Joined
May 20, 2021
Messages
3
Helped
0
Reputation
0
Reaction score
0
Trophy points
1
Activity points
41
get_flat_cells [get_objects_by_location -within [get_attribute [get_placement_blockages pb_0] bbox]]
The above command is used to get cells from particular location.
How to get only the cells whose number of pins are greater than 6
--
Pruthvi
 

I assume you're using IC compiler.
You just need to add "-filter {number_of_pins > 6}" at the end of the command:
get_flat_cells [get_objects_by_location -within [get_attribute [get_placement_blockages pb_0] bbox]] -filter {number_of_pins > 6}
 
Status
Not open for further replies.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top