zoukankan      html  css  js  c++  java
  • 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检查:

  • 相关阅读:
    OSI七层模型详解 TCP/IP协议
    ZT 第一范式,第二范式,第三范式
    思杰20140522
    Correspondence / ˏkɔris'pɔndәns / dictionary10-800.doc
    闲着没事,贴贴图
    心情闲适,发几个tatanic的图
    005 Python 基础特性
    017 虚拟内存 64位及内存对其 3
    004 Python 文件操作 字典 自定义函数
    003 Python list 索引
  • 原文地址:https://www.cnblogs.com/zeushuang/p/2853042.html
Copyright © 2011-2022 走看看