max_fanout使用方法
第一章 使用语法
1.1 使用方式一 在RTL中的用法
VHDL语法
signal test_s : std_logic;
attribute MAX_FANOUT : integer;
attribute MAX_FANOUT of test_s : signal is 50;
Verilog语法
(*MAX_FANOUT=50*)regtest;
第二章 tcl命令
2.1 report_high_fanout_nets 查看所有高扇出的命令
默认会显示10条最大扇出路径,同时会显示Driver Type。 report_high_fanout_nets也可附带一系列的参数,执行如下指令即可查看可用参数:
report_high_fanout_nets -help
这里列出几个常用的:
-timing:生成扇出报告里附带信号的时序信息。
-clocks:指定显示某个时钟域的信号扇出。
-max_nets:指定报告中显示的信号个数,默认为10。
-fanout_greater_than:报告扇出大于指定值的信号
-fanout_lesser_than:报告扇出小于指定值的信号
————————————————
版权声明:本文为CSDN博主「女性图」的原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接及本声明。
原文链接:https://blog.csdn.net/weixin_31852627/article/details/112540877
2.2 查看设计中扇出 大于特定值的网线
report_high_fanout_nets -load_types -fanout_greater_than 500 -name fanout_than_500
2.3 查看高扇出网线并显示时序
report_high_fanout_nets -timing -max_nets 100 -name -fanout_max_10
2.4 查看时钟区域显示高扇出网线的负载分布情况
report_high_fanout_nets -clock_regions -name fanout_by_clock_region
2.5 SLR显示高扇出网线的负载分布情况
report_high_fanout_nets -slr -name fanout_slr