opt_design -directive Explore > $project_top/opt_design.log
时间: 2024-05-30 09:11:38 浏览: 226
这个命令是什么意思?
这个命令是在执行设计优化过程中使用的。其中 "-directive Explore" 表示使用探索性优化策略,在搜索设计空间时尝试尽可能多的可能性。"> $project_top/opt_design.log" 表示将优化过程中的日志信息输出到指定的文件中,以便后续查看和分析。
相关问题
[Vivado_Tcl 4-169] The -directive option cannot be used with the -post_place_opt option Resolution: Please use only -directive switch.
这个错误提示是因为 `-directive` 和 `-post_place_opt` 这两个选项不能同时使用。请只使用 `-directive` 选项,或者移除 `-post_place_opt` 选项。
例如,如果原本的命令是这样的:
```
synth_design -top my_design -part xc7vx690tffg1761-2 -directive Explore -post_place_opt DONT_TOUCH
```
可以改为:
```
synth_design -top my_design -part xc7vx690tffg1761-2 -directive Explore
```
阅读全文