• PT静态时序分析的三种模式


    翻译自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检查:

  • 相关阅读:
    实验12——java取整、猜数和猜拳
    实验11——java线程模拟卖票
    实验10—— java读取歌词文件内容动画输出
    实验09——java基于TCP实现客户端与服务端通信
    JavaSE第十四天
    javaSE第十一天
    JavaSE第十天
    JavaSE第十天
    JavaSE第九天
    JavaSE第八天
  • 原文地址:https://www.cnblogs.com/zeushuang/p/2853042.html
Copyright © 2020-2023  润新知