Hi What the easiest way to get all buffers cells?
# openroad
p
Hi What the easiest way to get all buffers cells?
v
can you elaborate further about your requirement?
p
I want to use get_cells command to get all cells that are buffers in the design
v
Using OpenROAD gui, with
find instances> * buf*
will highlight all.
p
This is find me instances that got buf in their name, there are other attribute that I can use to find buffers if there isn't buf in their name?
v
get_cells clkbuf_*_clk
Buffer cells end with
*_buf__*
. It is end with similar name only.
p
Your assumption is that all buffer endswith buf_, is that always true?
v
its depends on technology. For ASAP7 it is begin with
BUF_
p
Ok thanks!