完善资料让更多小伙伴认识你,还能领取20积分哦, 立即完善>
喜
我有这个大设计,我已经在FPGA(virtex 6设备)上实现了。 其中一个设计时钟(clk xyz)需要运行@ 125MHz。 然而,实现该设计仅提供约88MHz。 我尽可能地限制了设计(无论我有什么关于虚假路径的信息)。 所以我使用SmartXplorer并以下列方式运行它 - 1)时序改进策略 - 12次运行 - 这将迭代各种MAP选项以获得最佳性能 - 这为时钟xyz提供了97MHz的最佳情况(使用MapLogicOpt策略) 2)仅在成本表上迭代 - 12次运行 - 尝试不同的PAR。 - 这为时钟xyz提供了104MHz的最佳情况 现在,当我在FPGA上尝试位文件时,104MHz位文件没有按预期工作。 但是97MHz位文件确实有效。 我的问题是 - 这可能是一个“侥幸”,即较慢的位文件正在工作,但不是一个时间更好的时间? 可能是它背后的原因,我在哪里可以看到它? 我可以在两次运行之间比较的任何文件? 将运行smartxplorer与成本表上的更多迭代有助于改善clk xys的时间? 如果我想从最好的smartxplorer运行其他实现运行的PAR,那么最好的方法是什么? 现在,我使用planahead并锁定BRAM实例(xilinx文档说像DSP,BRAMS,arith单元等锁定原语),这给了我ucf文件中新的loc约束。 然后,我在其他xilinx实现运行中使用这些约束来尝试在某种程度上保留PAR。 这是保留PAR的方法还是有更好的方法可以做到这一点? 我可以尝试使用smartxplorer来改善时序并使位文件更加可靠吗? 所有上述内容都在xilinx 14.1 ISE中。 以上来自于谷歌翻译 以下为原文 hi, i have this BIG design which i have implemented on the fpga (a virtex 6 device). one of the clocks of the design (clk xyz) needs to run @ 125MHz. however implementing the design only gives about 88MHz. I have constrained the design the best I can (with whatever info I had regarding false paths etc.). so i used SmartXplorer and ran it in the following manner - 1) timing improvement strategy - 12 runs - this would iterate through the various MAP options for best performance -this gave a best case of 97MHz for clock xyz (using the MapLogicOpt strategy) 2) iterate only on cost table - 12 runs - to try different PAR. -this gave a best case of 104MHz for clock xyz Now when I tried the bit files on the FPGA, the 104MHz bit file did not work as expected. However the 97MHz bit file did work. My question is - could this be a "fluke" i.e. a slower bit file is working but not the one with a slighlty better timing? what could be the reasons behind it and where can i look to zero in on it? any files that i can compare between the two runs? will running smartxplorer with more iterations on the cost table help improve the timing of clk xys? If I want to retian the PAR from the best smartxplorer run for some other implementation run, what is the best way to do that? for now, i use planahead and lock the BRAM instances (xilinx document says lock primitives like DSP, BRAMS, arith units etc.), which gives me new loc constraints in the ucf file. I then use these constraints in other xilinx implementation runs to try and retain the PAR to some extent. is this the way to retain PAR or is there some better method to do so? any other things I can try with smartxplorer to improve timing and make the bit file more relaible? all of the above in xilinx 14.1 ISE. |
|
相关推荐
7个回答
|
|
嗨,
您似乎已经做了正确的事情来缩短最佳频率的时间。 阅读Pg 142,为smartxplorer选择最佳策略-http://www.xilinx.com/support/documentation/sw_manuals/xilinx14_1/devref.pdf 浏览这些指南,看看你是否能找到新的东西。 http://www.xilinx.com/itp/xilinx10/isehelp/ise_c_using_smart_xplorer.htm http://www.xilinx.com/support/documentation/sw_manuals/xilinx13_1/ug689.pdf 谢谢,AnirudhPS:请将此标记作为答案,以防它有助于解决您的问题。如果帖子引导您找到解决方案,请给予赞誉。 以上来自于谷歌翻译 以下为原文 Hi, You seem to have done the right things for closing the timing for best possible frequency. read through Pg 142 on selecting the best strategy for smartxplorer- http://www.xilinx.com/support/documentation/sw_manuals/xilinx14_1/devref.pdf Skim through these guide and see if you can find something new. http://www.xilinx.com/itp/xilinx10/isehelp/ise_c_using_smart_xplorer.htm http://www.xilinx.com/support/documentation/sw_manuals/xilinx13_1/ug689.pdf Thanks, Anirudh PS: Please MARK this as an answer in case it helped resolve your query.Give kudos in case the post guided you to a solution. |
|
|
|
嗨,
在任何情况下,您可能还需要手动查看代码,看看是否有一些简单的路径可以为计时而烦恼,或者您是否可以更改编码以便可以删除数据路径中的某些寄存器, 改善时间或类似的东西 谢谢,AnirudhPS:请将此标记作为答案,以防它有助于解决您的问题。如果帖子引导您找到解决方案,请给予赞誉。 以上来自于谷歌翻译 以下为原文 Hi, In any case, you may also have to manually have a look at the code to see if there are some simple paths which can be ingnored for timing or if you can change the coding so that certain registers in the data path can be removed which can improve the timing or something simiilar Thanks, Anirudh PS: Please MARK this as an answer in case it helped resolve your query.Give kudos in case the post guided you to a solution. |
|
|
|
anirudh,
我已经浏览了这些文档,我已经阅读过它们了。 这就是让我走到这一步的原因。 我需要知道的是 - 哪些因素可能导致比较慢的位文件或来自第二个最佳策略的位文件比一个更好的策略或位文件的位文件表现更好,这会在同一个时钟总线上产生低容量,如问题 我问 以上来自于谷歌翻译 以下为原文 anirudh, i've already skimmed through these docs and i have read them. that is what got me this far. what i need to know is - what factors could lead to a slower bit file or a bit file from the 2nd best strategy performing better than a bitfile from a better strategy or bitfile which gives a lowe slack on the same clock bus, like the questions i asked |
|
|
|
喜
我不能改变代码,因为它是一个IP。 所以我必须依靠工具/ smartxplorer来获得最好的时间。 至于查看代码并手动查找各种错误路径等,该信息驻留在设计器上......它是一个IP。 所以我们不能确定哪条路可以忽略。 以上来自于谷歌翻译 以下为原文 hi, i cant change the code as it's an IP. so i have to rely on tools/smartxplorer for the best possible timining. as for looking at the code and manually and figuring out various false paths etc., that information resides with designer .. and it's an IP. so we can't say for sure which path can be ignored or not. |
|
|
|
我的问题是 - 这可能是一个“侥幸”,即较慢的位文件正在工作,但不是一个时间更好的时间?
可能是它背后的原因,我在哪里可以看到它? 我可以在两次运行之间比较的任何文件? 将运行smartxplorer与成本表上的更多迭代有助于改善clk xys的时间? 如果我想从最好的smartxplorer运行其他实现运行的PAR,那么最好的方法是什么? 现在,我使用planahead并锁定BRAM实例(xilinx文档说像DSP,BRAMS,arith单元等锁定原语),这给了我ucf文件中新的loc约束。 然后,我在其他xilinx实现运行中使用这些约束来尝试在某种程度上保留PAR。 这是保留PAR的方法还是有更好的方法可以做到这一点? 以上来自于谷歌翻译 以下为原文 My question is - could this be a "fluke" i.e. a slower bit file is working but not the one with a slighlty better timing? what could be the reasons behind it and where can i look to zero in on it? any files that i can compare between the two runs? will running smartxplorer with more iterations on the cost table help improve the timing of clk xys? If I want to retian the PAR from the best smartxplorer run for some other implementation run, what is the best way to do that? for now, i use planahead and lock the BRAM instances (xilinx document says lock primitives like DSP, BRAMS, arith units etc.), which gives me new loc constraints in the ucf file. I then use these constraints in other xilinx implementation runs to try and retain the PAR to some extent. is this the way to retain PAR or is there some better method to do so? |
|
|
|
你好@ zubin_kumar31
我建议你对设计进行无约束的时序分析,并检查时序问题。 谢谢, 维奈 -------------------------------------------------- ------------------------------------------您是否尝试在Google中输入问题? ? 如果没有,你应该在发布之前。 此外,MARK这是一个答案,以防它有助于解决您的查询/问题。给予帮助您找到解决方案的帖子。 以上来自于谷歌翻译 以下为原文 Hello @zubin_kumar31 I suggest you to run unconstrained timing analysis on the design and check for timing issues. Thanks, Vinay -------------------------------------------------------------------------------------------- Have you tried typing your question in Google? If not you should before posting. Also, MARK this is as an answer in case it helped resolve your query/issue.Give kudos to the post that helped you to find the solution. |
|
|
|
你好vinay。
这是我还没有探索的东西。 关于你的方法的2个问题 - 1)如果我对设计进行无约束的分析,那么该工具如何甚至可以识别时间问题,因为......嗯......设计是不受约束的...所以它不会有任何违规路径等报告。 2)当我约束设计时,我得到一个适当的设计摘要,其中包含失败路径和最佳可达到的clk频率。 但是,如果我删除周期约束然后实现设计,那么我需要查看哪个文件来检查各种时钟/时钟域的最佳可行频率? 请告诉我 ... 感谢致敬, ž。 以上来自于谷歌翻译 以下为原文 hi vinay. this is something i am yet to explore. 2 questions regarding your approach - 1) if i run an unconstrained analysis on the design, then how will the tool even identify timing issues because ... well ... the design is unconstrained ... so it won't have any violating paths etc. to report. 2) when i constraint the design, i get a proper design summary with the failing paths and the best achievable clk frequency. however if i remove the period constraints and then implement the design, then which file do i need to look into to check the best doable frequency for the various clocks/clock domains? please let me know ... thanks and regards, z. |
|
|
|
只有小组成员才能发言,加入小组>>
2380 浏览 7 评论
2797 浏览 4 评论
Spartan 3-AN时钟和VHDL让ISE合成时出现错误该怎么办?
2262 浏览 9 评论
3335 浏览 0 评论
如何在RTL或xilinx spartan fpga的约束文件中插入1.56ns延迟缓冲区?
2428 浏览 15 评论
有输入,但是LVDS_25的FPGA内部接收不到数据,为什么?
756浏览 1评论
请问vc707的电源线是如何连接的,我这边可能出现了缺失元件的情况导致无法供电
545浏览 1评论
求一块XILINX开发板KC705,VC707,KC105和KCU1500
366浏览 1评论
1963浏览 0评论
682浏览 0评论
小黑屋| 手机版| Archiver| 电子发烧友 ( 湘ICP备2023018690号 )
GMT+8, 2024-11-22 17:49 , Processed in 1.237876 second(s), Total 89, Slave 72 queries .
Powered by 电子发烧友网
© 2015 bbs.elecfans.com
关注我们的微信
下载发烧友APP
电子发烧友观察
版权所有 © 湖南华秋数字科技有限公司
电子发烧友 (电路图) 湘公网安备 43011202000918 号 电信与信息服务业务经营许可证:合字B2-20210191 工商网监 湘ICP备2023018690号