zeushuang

翻译自PT的使用手册。

PT有三种分析模式,分别是single operation analysis mode,best case/worst case analysis,on-chip variation analysis。

1. single operation analysis模式

PT只使用一种operation condition的进行时序检查。

如只报告best-case的情况:
pt_shell>set_operation_conditions BEST
pt_shell>report_timing -delay_type min

如只报告worst-case的情况:
pt_shell>set_operation_conditions WORST
pt_shell>report_timing -delay_type max

2. best-case/worst-case analysis模式

PT使用best operation condition和worst operation condition的进行时序检查。在setup检查时,对所有路径使用max delay。在hold检查时,对所有路径使用min delay。

pt_shell>set_operation_conditions -min BEST -max WORST
pt_shell>report_timing -delay_type min
pt_shell>report_timing -delay_type max

3. on-chip variation模式

 PT 进行保守时序分析。如在进行setup检查时,对发送寄存器clock路径和数据路径使用max delay,对锁存寄存器的clock路径使用min delay。在进行hold检查时,对发送寄存器clock路径和数据路径使用min delay,对锁存寄存器的clock路径使用max delay。

pt_shell>set_operation_conditions -analysis_type on_chip_variation -min MIN -max MAX
pt_shell>report_timing -delay_type min
pt_shell>report_timing -delay_type max

 三种模式使用的参数对比表。

setup检查:

 

hold检查:

 

 

分类:

技术点:

相关文章:

  • 2021-06-29
  • 2021-12-23
  • 2021-11-20
  • 2021-07-12
  • 2021-11-13
  • 2021-08-06
猜你喜欢
  • 2021-07-09
  • 2022-12-23
  • 2021-12-27
  • 2021-07-05
  • 2021-10-10
  • 2022-01-13
相关资源
相似解决方案