首页 > 其他分享 >calibredrv 做 LVL 脚本

calibredrv 做 LVL 脚本

时间:2023-10-27 14:11:25浏览次数:30  
标签:脚本 xor target topCellName calibredrv top xxx LVL ref

calibredrv 做 LVL 的脚本

脚本是一个 makefile 文件,执行的时候先执行 make gen, 再运行make diff

oasis 文件

target = /xxx/xxx.oas
ref = /xxx/xxx.oas

target_top = topCellName
ref_top = topCellName

gen:
    dbdiff -system OASIS -refdesign $(ref) $(ref_top) -design $(target) $(target_top) -write_xor_rules xor.runset

diff:
    calibre -64 -hier -turbo 60 -hyper -drc ./xor.runset

gds 文件

target = /xxx/xxx.gds
ref = /xxx/xxx.gds

target_top = topCellName
ref_top = topCellName

gen:
    dbdiff -system GDS -refdesign $(ref) $(ref_top) -design $(target) $(target_top) -write_xor_rules xor.runset

diff:
    calibre -64 -hier -turbo 60 -hyper -drc ./xor.runset

一个文件是 gds 一个文件是 oas

target = /xxx/xxx.gds
ref = /xxx/xxx.oas

target_top = topCellName
ref_top = topCellName

gen:
    dbdiff -system GDS -refsystem OASIS -refdesign $(ref) $(ref_top) -design $(target) $(target_top) -write_xor_rules xor.runset

diff:
    calibre -64 -hier -turbo 60 -hyper -drc ./xor.runset

标签:脚本,xor,target,topCellName,calibredrv,top,xxx,LVL,ref
From: https://www.cnblogs.com/AngleLin/p/17792201.html

相关文章

  • 写一个cmd脚本,列出指定目录下的所有子目录和文件,限制层数
    在Windows的CMDshell中,tree命令并不直接支持指定层数。你可以编写CMD脚本达到相同目标。@echooffsetlocalset"root=%~1"set"maxdepth=%~2"set"curdepth=0"set"indent=":looppushd"%root%"for/d%%Din(*)do(echo%indent%......
  • 【速看】如何通过合理的封装,让你的自动化脚本更上一层楼!
    此文章来源于项目官方公众号:“AirtestProject”版权声明:允许转载,但转载必须保留原链接;请勿用作商业或者非法用途1.前言 上一篇推文利用一个在图片范围内实现随机坐标点击的例子,去教会大家如何将自己想要的效果实现出来,受到大家的热情反响,在我们官方讨论群中,还有大佬对我......
  • Linux免密登录脚本
    首先安装sshpassyuminstall-ysshpassLinux免密登录脚本:#!/bin/bashexportIP="192.168.100.140192.168.100.141192.168.100.142"exportSSHPASS=086530forHOSTin$IP;dosshpass-essh-copy-id-oStrictHostKeyChecking=no$HOST scp/etc/hostsroot@$H......
  • Mac电脑使用BetterAndBetter软件自定义的脚本
    新建文件tellapplication"Finder" setselectedItemstoselection if(countofselectedItems)is1then setselectedItemtoitem1ofselectedItems ifclassofselectedItemisfolderthen displaydialog"请输入文件名:"defaultansw......
  • sipp3.6多方案压测脚本
     概述SIP压测工具sipp,免费,开源,功能足够强大,配置灵活,优点多。有时候我们需要模拟现网的生产环境来压测,就需要同时有多个sipp脚本运行,并且需要不断的调整呼叫并发。通过python脚本的子进程功能,我们可以很方便的实现sipp的多方案压测功能。环境centos7.9freeswitch1.10.7si......
  • 简单脚本部署——下
     华为云耀云服务器L实例的获取界面:https://www.huaweicloud.com/product/hecs-light.html 在华为云耀云服务器L实例上搭载了脚本并且需要测试其功能时,以下是一些步骤和考虑事项: 测试环境设置:确保有一个独立的测试环境来运行脚本,这样可以避免对生产环境造成任何影响。......
  • 简单脚本部署——上
     在华为云耀云服务器L实例上搭载脚本可以实现让机器自动执行一系列任务的功能。而注入百度贴吧自动签到这样的功能是其中之一。通过在华为云耀云服务器L实例上安装相应的脚本,可以使服务器在设定的时间间隔内自动登录百度贴吧,并进行签到操作。实现这个功能的关键是一个能够模......
  • Linux-Source insight支持shell脚本
    【脚本链接】https://www.sourceinsight.com/pub/languages/Bash.xclf【设置教程】https://www.cnblogs.com/archive-ch/p/13941358.html......
  • Python 实现抢购脚本--Mac 环境
    说明介绍该脚本使用Selenium库来实现自动登录并在指定的时间购买商品。运行前准备mac的safari浏览器本身已经集成了safaridriver,只要启用并开启即可,步骤如下:终端启用safaridriver:sudosafaridriver--enable尝试运行safraidriver,看是否有权限问题。/usr/bin/safaridr......
  • LR录制https协议脚本前配置
    LR录制https安全协议脚本前的设置在IE中添加安全证书打开IE浏览器,选择“工具—Internet选项—内容”,点击“证书”导入相应的证书,如下图在LR中配置证书获取pem格式证书因为loadrunner只支持pem格式的证书,所以要将证书转换格式;这里就需要用到openssl工具,进入cmd命令窗口,进入openssl的......