为什么在 Vivado 的 Design Timing Summery(综合)中我得到 WNS = inf?
我想确保我的程序与至少100ns的时钟一起使用。我已经设置了正时约束。
I want to make sure that my program works with a clock of at least 100ns. I have already set the timing constraint.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
wns = INF通常表示〜您没有/没有设置时钟。
也许您不需要时钟 - 您的电路都是组合的吗?如果是这样,需要添加寄存器和时钟以获取定时报告以报告定时路径。
如果您的电路具有FFS,则已经存在clk等 - 请确保告诉Vivado(或Quartus)您的时钟存在并且是特定的频率 - 某种create_clock约束。
WNS=INF typically means ~ you do not have/ did not setup a clock.
Maybe you dont need a clock - is your circuit all combinatorial? If so, need to add registers and clock to get timing report to report a timed path.
If you circuit has FFs, clk and such already - make sure you tell Vivado (or Quartus) that your clock exists and is a specific frequency - some kind of create_clock constraint.