美文网首页IC数字后端知识角
【原创】找出超过-0.200ns的port的名字

【原创】找出超过-0.200ns的port的名字

作者: 飞奔的大虎 | 来源:发表于2021-05-25 14:36 被阅读0次

<@innovus>set_table_style -nosplit -no_frame_fix_width

<@innovus>report_timing -nworst 10 -path_group in2reg -max_path 1000 -max_slack -0.2> in2reg0.200.tcl

<@dahu>cat in2reg0.200.tcl | grep 'Beginpoint:' | awk '{print $2}' | sort -n > in2reg0.200-1.tcl

得到in2reg0.200-1.tcl,注意将最后的  [数字]  变成  [*]  ,然后分类。

简略版

<@innovus>foreach_in_collection P [report_timing -nworst 10 -path_group in2reg -max_path 1000 -max_slack -0.10 -collection] {set P1 [get_object_name [get_attribute $P startpoint]]; echo $P1 >> in2reg0.10.tcl}

相关文章

网友评论

    本文标题:【原创】找出超过-0.200ns的port的名字

    本文链接:https://www.haomeiwen.com/subject/drsxsltx.html