PT通过size vt修时序脚本

常用到mmmc的情况下通过synopsys的prime time的multisceanrio 模式提高fix 效率

以下内容仅供学习参考

##start job:dsubjob + pt_shell -multi_scenario -f setup_size_vt.tcl
set date [exec date +%m%d%H%M]
set work_path setup_fixvt_${date}
sh rm -rf ./$work/*
set_host_options -num_processes 4 -max_cores 32;##num_processes bigger than scenario
start_hosts
###loading session
create_scenario -name fun_0p6_wcz -image location_of_session_1
create_scenario -name fun_0p7_wc -image location_of_session_2
current_session -all
current_scenario -all
##user var setting
set fixsetup 1
remote_execute {if {1} {set_false_path -from [all_inputs]	set_false_path -to [all_inputs]}set_false_path -through $pin;set_false_path -from moduleA/pin1;set_false_path -to  moduleB/pin2;
} 
##tools_setting
remote_execute {set eco_alternative_area_ratio_threshold 1set_app_var timing_save_pin_arrival_and_slack trueset_app_var read_parasitics_load_location trueset_app_var eco_enable_more_scenarios_than_hosts trueset_app_var eco_power_exclude_unconstrained_cells true;#unconstraint path is treated as dont touchset eco_strict_pin_name_equivalence true
}
###dont use
remote_excute {define_user_attribute pt_dont_use -quiet -type boolean -class lib_cellset vars(edi,dont_use) "mesh_* *D36* *SVT"foreach item $vars(edi,dont_use) {set_user_attribute -class lib_cell [get_lib_cells -quiet */$item] pt_dont_use true	}set_dont_use [get_lib_cells -quiet */*ULVT] true
}##dont touch setting
remote_execute {set_dont_touch [get_cells -filter "ref_name =~ DCCK*" -hierarchical] trueset_dont_touch [get_cells -filter "ref_name =~ CK*" -hierarchical] trueset_dont_touch [get_cells -filter "ref_name =~ ISO*" -hierarchical] trueset_dont_touch [get_cells -filter "ref_name =~ LVU*" -hierarchical] trueset_dont_touch [get_cells -filter "ref_name =~ PT*" -hierarchical] trueset_dont_touch [get_cells -filter "ref_name =~ AP*" -hierarchical] trueset_dont_touch [get_cells -filter "ref_name =~ SYNC*" -hierarchical] true #同步set ck_cell [get_attribute [get_cells -filter "is_clock_network_cell == true" -hierarchical] full_name]foreach cell $ck_cell {set_dont_touch [get_cells $cell]}
}###setting for size vt
remote_execute {my_set_lib_cell_vt_pattern_and_base_ref_name -pattern {SVT LVT ULVT}; vt patternset_app_vareco_alternative_area_ratio_threshold 1##fix timing only by size vt
}##main proc for size vt
if {$fix_setup} {set pins {1 2 3} #define violation endpointfix_eco_timing -type setup -verbose -cell_type combinational -methods size_cell -setup_margin 0.00 -verbose -to $pins -pba_mode ex;#fix_timing only size combinational cellfix_eco_timing -type setup -verbose -cell_type sequential -methods size_cell -setup_margin 0.00 -verbose -to $pins -pba_mode ex;#fix_timing only size sequential cell
#fix_eco_timing -type setup -verbose -cell_type combinational -methods size_cell -setup_margin 0.00 -verbose
#fix_eco_timing -type setup -verbose -cell_type sequential -methods size_cell -setup_margin 0.00 -verboseremote_execute {set date [exec date +%m%d]write_changes -format icctcl -output pt_${date}.icc.tclwrite_changes -format ptsh -output pt_${date}.pt.tclwrite_changes -format text -output pt_${date}.text.tcl}
}

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/bicheng/7237.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

基于TL431和CSA的恒压与负压输出

Hello uu们,51去那里玩了呀?该收心回来上班了,嘿嘿! 为什么会有这个命题,因为我的手头只有这些东西如何去实现呢?让我们一起来看电路图吧.电路图如下图1所示 图1:CSA恒压输出电路 图1中,R1给U2提供偏置,Q1给R1提供电流,当U1-VOUT输出大于2.5V时候,U2内部的三极管CE导通,使得…

第四百九十二回

文章目录 1. 概念介绍2. 使用方法2.1 SegmentedButton2.2 ButtonSegment 3. 代码与效果3.1 示例代码3.2 运行效果 4. 内容总结 我们在上一章回中介绍了"SearchBar组件"相关的内容,本章回中将介绍SegmentedButton组件.闲话休提,让我们一起Talk …

Qt扫盲-Qt D-Bus概述

Qt D-Bus概述 一、概述二、总线三、相关概念1. 消息2. 服务名称3. 对象的路径4. 接口5. 备忘单 四、调试五、使用Qt D-Bus 适配器1. 在 D-Bus 适配器中声明槽函数1. 异步槽2. 只输入槽3. 输入输出槽4. 自动回复5. 延迟回复 一、概述 D-Bus是一种进程间通信(IPC)和远程过程调用…

分布式与一致性协议之ZAB协议(四)

ZAB协议 ZooKeeper是如何选举领导者的。 首先我们来看看ZooKeeper是如何实现成员身份的? 在ZooKeeper中,成员状态是在QuorumPeer.java中实现的,为枚举型变量 public enum ServerState { LOOKING, FOLLOWING, LEADING, OBSERVING }其实&…

【JAVA入门】Day03 - 数组

【JAVA入门】Day03 - 数组 文章目录 【JAVA入门】Day03 - 数组一、数组的概念二、数组的定义2.1 数组的静态初始化2.2 数组的地址值2.3 数组元素的访问2.4 数组遍历2.5 数组的动态初始化2.6 数组的常见操作2.7 数组的内存分配2.7.1 Java内存分配2.7.2 数组的内存图 一、数组的概…

【数据结构】--- 深入剖析二叉树(中篇)--- 认识堆堆排序Topk

Welcome to 9ilks Code World (๑•́ ₃ •̀๑) 个人主页: 9ilk (๑•́ ₃ •̀๑) 文章专栏: 数据结构之旅 文章目录 🏠 初识堆 📒 堆的概念 📒 堆的性质 🏠 向上调整算法 && 向下调整算…

2024年5月营销日历,追热点做营销必备~

5月1日 劳动节 劳动节是致敬辛勤劳动者的节日,也是商家们争相推出优惠活动的黄金时期。以5.1元、51元或5.1折作为营销点,不仅能紧扣节日主题,还能吸引大量消费者。比如,推出抽奖活动,幸运者有机会享受全单5.1折的优惠…

【云原生】Pod 的生命周期(一)

【云原生】Pod 的生命周期(一)【云原生】Pod 的生命周期(二) Pod 的生命周期(一) 1.Pod 生命期2.Pod 阶段3.容器状态3.1 Waiting (等待)3.2 Running(运行中)3…

《Python编程从入门到实践》day20

#尝试在python3.11文件夹和pycharm中site-packages文件夹中安装,最终在scripts文件夹中新建py文件成功导入pygame运行程序 #今日知识点学习 import sysimport pygameclass AlienInvasion:"""管理游戏资源和行为的类"""def __init__(…

memory consistency

memory consistency model 定义了对于programmer和implementor来说,访问shared memory system的行为; 对于programmer而言,他知道期望值是什么, 知道会返回什么样的数据;; 对于implementro而言,…

微信小程序原生代码实现小鱼早晚安打卡小程序

大家好,我是雄雄,欢迎关注微信公众号:雄雄的小课堂 小鱼早晚安打卡小程序:开启健康生活,共享正能量 在这个快节奏的时代,我们常常被各种琐事和压力所困扰,以至于忽略了对健康生活方式的追求。然…

【探秘地球宝藏】矿产资源知多少?

当我们仰望高楼林立的城市,乘坐便捷的交通工具,享受各种现代生活的便利时,你是否曾想过这一切背后的支撑力量?答案就藏在我们脚下——矿产资源,这些大自然赋予的宝贵财富,正是现代社会发展的基石。今天&…

OpenHarmony 实战开发——ABI

OpenHarmony系统支持丰富的设备形态,支持多种架构指令集,支持多种操作系统内核;为了应用在各种OpenHarmony设备上的兼容性,本文定义了"OHOS" ABI(Application Binary Interface)的基础标准&#…

【Numpy】一文向您详细介绍 np.linspace()

【Numpy】一文向您详细介绍 np.linspace() 🌈 欢迎莅临我的个人主页👈 这里是我静心耕耘深度学习领域、真诚分享知识与智慧的小天地!🎇 🎓 博主简介:985高校的计算机专业人士,热衷于分享技术见…

idea中取消自动导包顺序

1、取消自动导入 2、取消导包顺序设置

英语写作中“最后”finally、eventually、in the end、at last的用法

一、finally 是最通用的单词,它可以表示所有中文里“最后”的意思,例如: First do Task 1. Then do Task 2. Finally do Task 3.(首先做任务1,再做任务2,最后做任务3。) 上面是描述一个协议的…

Python学习笔记------处理数据和生成折线图

给定数据: jsonp_1629344292311_69436({"status":0,"msg":"success","data":[{"name":"美国","trend":{"updateDate":["2.22","2.23","2.24",&qu…

实用的Chrome浏览器命令

Google Chrome 是一款广泛使用的网络浏览器,它提供了许多实用的快捷键和命令,可以帮助用户更高效地浏览网页。以下是一些常用的 Chrome 浏览器命令: 1. 新标签页: Ctrl T (Windows/Linux) 或 Command T (Mac) 2. 关闭当前标签: Ctrl W 或…

奶爸预备 |《P.E.T.父母效能训练:让亲子沟通如此高效而简单:21世纪版》 / 托马斯·戈登——读书笔记

目录 引出致中国读者译序前言第1章 父母总是被指责,而非受训练第2章 父母是人,不是神第3章 如何听,孩子才会说:接纳性语言第4章 让积极倾听发挥作用第5章 如何倾听不会说话的婴幼儿第6章 如何听,孩子才肯听第8章 通过改…

出海战略与技术:利用SOCKS5代理和代理IP加速跨界电商与游戏行业的全球拓展

在全球化的商业环境中,"出海"已成为中国企业扩展国际市场的重要战略。尤其是在跨界电商和游戏行业,企业不仅需要理解和适应多元文化的市场,还需要有效地克服技术和网络安全方面的挑战。在这种情况下,SOCKS5代理和代理IP…