ARTICLE DETAIL

资讯详情

深耕网站建设与运营推广的一线实战洞察。

Design Compiler:中断命令/脚本的执行

Design Compiler:中断命令/脚本的执行 相关阅读Design Compilerhttps://blog.csdn.net/weixin_45791458/category_12738116.html?spm1001.2014.3001.5482目录中断命令的执行中断脚本的执行中断综合命令的执行映射阶段优化阶段中断命令的执行如果在使用命令时输入了错误的选项或输入了错误的命令可以使用CtrlC手动中断命令的执行并返回到dc_shell中此时终端会提示Information: Interrupting current command. (INT-2)如果在命令响应中断前再次使用CtrlC终端会提示Information: One more interrupt will exit process. (INT-3)如果在命令响应中断前使用了三次CtrlCdc_shell进程会被终止并提示Information: Process terminated by interrupt. (INT-4)。以上行为对于dc_shell也是成立的即可以把dc_shell当作一个一直在执行的命令。有些命令无法中止比如update_timing命令要中止它们必须从系统级别终止dc_shell。中断脚本的执行如果此时由于source命令或dc_shell -f命令正在执行脚本可以使用CtrlC手动中断当前执行的命令忽略脚本中的后续命令并返回到dc_shell中。中断综合命令的执行对于compile命令和compile_ultra命令的中断与其他命令情况有所不同需要进行分类讨论。映射阶段如果设计此时处于映射阶段使用CtrlC时终端会提示Information: Ignoring interrupt signal since the design is being mapped. One more interrupt will abort optimization without transferring the design... (INT-7)并忽略此中断信号如果在该阶段再次使用CtrlC终端会提示Information: Aborting optimization without transferring the design... (INT-8)并中断综合设计的当前状态不会返回因为尚未完全映射如果在该阶段使用了三次CtrlCdc_shell进程会被终止并提示Information: Process terminated by interrupt. (INT-4)。优化阶段如果设计此时处于优化阶段使用CtrlC时终端会提示Information: Preparing to interrupt optimization (INT-5)并显示菜单交互模式综合必须完成当前的转换才能显示菜单这可能需要几分钟如果在该阶段再次使用CtrlC终端会提示Information: Aborting optimization... (INT-6)并中断综合设计的当前状态会返回如果在该阶段使用了三次CtrlCdc_shell进程会被终止并提示Information: Process terminated by interrupt. (INT-4)。Information: Preparing to interrupt optimization (INT-5) Please type in one of the following options: 1 to write out the current state of the design 2 to Abort optimization 3 to Kill the process 4 to Continue optimization Please enter a number:
返回列表