Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个带有嵌入式 Block Design 的 Vivado 设计。它创建大约 150 次上下文运行(合成)和最终合成运行。不幸的是,最终的综合运行只包含一个顶级包装器和黑盒。
我想将最终的顶级 DCP 和所有脱离上下文运行的 DCP 合并到一个大 DCP 中。然后可以将其用作在我的 CI 环境中运行的独立实现的输入。
如何将所有这些 DCP 合并为一个大 DCP?
DCP = 设计检查点
Load all the checkpoints into Vivado using read_checkpoint and then link them together with link_design. After that you can write out a unified checkpoint:
read_dcp top.dcp read_dcp child0.dcp ... read_dcp child149.dcp link_design write_checkpoint unified.dcp