在哪里强制 xilinx ISE 使用 block-ram?
我合成了一个小设备来测试块内存推理。
我收到 XST 发来的消息:
小内存将是 在 LUT 上实施,以便 最大化性能并节省块 内存资源。如果你想强行 它在块上的实现,使用 选项/约束 ram_style。
但是,我不知道在 ISE(我的例子中为 11.1)或约束文件中在哪里可以找到此选项/约束...
我不想在代码中直接使用 VHDL 属性。
I synthesized a small device to test the block-ram inference.
I got a message from XST :
The small RAM will be
implemented on LUTs in order to
maximize performance and save block
RAM resources. If you want to force
its implementation on block, use
option/constraint ram_style.
However, I don't know where to find this option/constraint either in ISE (11.1 in my case) or in constraint files...
I don't want to use VHDL attributes directly in my code.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在您的项目目录中,您将找到一个名为“your-design.xst”的文件。您可以在列表末尾(或“运行”之后的任何位置)添加以下内容:
这些应确保您将获得 BRAM 映射而不是分布式 RAM(这意味着基于 LUT 的内存)。
此选项也可能会派上用场:
请记住,每个选项都必须独占一行,并且您需要删除“#”及其后的任何内容。
如果您使用 ISE GUI,请转至
并选择上述选项。
In your project directory, you'll find a file called "your-design.xst". You can add the following at the end of the list (or anywhere after "run"):
These should make sure you're going to get BRAM mapping instead of distributed RAM (which means LUT-based memory).
This option could also come in handy:
Remember that each of those must be on a line of their own, and that you'll need to remove the "#" and whatever comes after that.
If you're using the ISE GUI, go to
and choose the above options there.
run -ram_style BLOCK 可以在命令行中完成此操作。
run -ram_style BLOCK can do the trick in command line.