在线咨询
eetop公众号 创芯大讲堂 创芯人才网
切换到宽版

EETOP 创芯网论坛 (原名:电子顶级开发网)

手机号码,快捷登录

手机号码,快捷登录

找回密码

  登录   注册  

快捷导航
搜帖子
查看: 2151|回复: 8

[求助] DRC脚本报错,怎么解决?

[复制链接]
发表于 2022-10-13 16:17:11 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。

您需要 登录 才可以下载或查看,没有账号?注册

x
#!/bin/csh -f
set cell_name = $1
set drc_rule = "your_drc.cal"
set gds_dir = "../gds"
sed -e 's#\(LAYOUT PRIMARY\).*#\1 \"'$cell_name'\"#g' \
        -e 's#\(LAYOUT PATH\).*#\1 \"'$gds_dir/$cell_name.gds'\"#g' \
        -e 's#\(DRC SUMMARY REPORT\).*#\1 \"'drc.rep'\"#g' \
        $drc_rule >! _drc.cal_

calibre -drc -64 -hier -hyper -turbo 2 _drc.cal_
grep "TOTAL Result Count = [1-9]" drc.rep



报错:ERROR:Failure to read input file ...xxx.gds at record offset 46137338
发表于 2022-10-13 17:02:22 | 显示全部楼层
路径
发表于 2022-10-13 17:16:53 | 显示全部楼层
xxx.gds at record offset 46137338 =>看起来好像gds file有问题
发表于 2022-10-13 17:30:08 | 显示全部楼层
sed -e 's#\(layout PRIMARY\).*#\1 \"'$cell_name'\"#g' \ 改成 sed -e 's#\(LAYOUT PRIMARY\).*#\1 \"'$cell_name'\"#g' \  试看看 
发表于 2022-10-13 22:53:03 | 显示全部楼层
报错:ERROR:Failure to read input file ...xxx.gds at record offset 46137338

这个应该是gds文件格式错误,需要重新做gds文件


 楼主| 发表于 2022-10-17 13:41:47 | 显示全部楼层


note30933 发表于 2022-10-13 17:30
sed -e 's#\(layout PRIMARY\).*#\1 \"'$cell_name'\"#g' \ 改成 sed -e 's#\(LAYOUT PRIMARY\).*#\1 \"' ...


嗯嗯 改好了
谢谢

 楼主| 发表于 2022-10-17 13:43:38 | 显示全部楼层


tosayes 发表于 2022-10-13 22:53
报错:ERROR:Failure to read input file ...xxx.gds at record offset 46137338

这个应该是gds文件格式错 ...


要什么样的格式?
发表于 2022-10-26 12:22:05 | 显示全部楼层
本帖最后由 johs01 于 2022-10-26 12:23 编辑

It is possible to ignore the lowercase and uppercase in the following script.
It has been changed from "g" to "gi" on the sed command.

#!/bin/csh -f
set cell_name = $1
set drc_rule = "your_drc.cal"
set gds_dir = "../gds"
sed -e 's#\(layout PRIMARY\).*#\1 \"'$cell_name'\"#gi' \
        -e 's#\(LAYOUT PATH\).*#\1 \"'$gds_dir/$cell_name.gds'\"#gi' \
        -e 's#\(DRC SUMMARY REPORT\).*#\1 \"'drc.rep'\"#gi' \
        $drc_rule >! _drc.cal_

calibre -drc -64 -hier -hyper -turbo 2 _drc.cal_
grep "TOTAL Result Count = [1-9]" drc.rep
发表于 2022-10-26 15:40:31 | 显示全部楼层
顶一下
您需要登录后才可以回帖 登录 | 注册

本版积分规则

×

小黑屋| 手机版| 关于我们| 联系我们| 在线咨询| 隐私声明| EETOP 创芯网
( 京ICP备:10050787号 京公网安备:11010502037710 )

GMT+8, 2024-11-5 13:06 , Processed in 0.020765 second(s), 6 queries , Gzip On, Redis On.

eetop公众号 创芯大讲堂 创芯人才网
快速回复 返回顶部 返回列表