在哪里强制 xilinx ISE 使用 block-ram?

发布于 2024-10-11 12:34:00 字数 266 浏览 2 评论 0原文

我合成了一个小设备来测试块内存推理。

我收到 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

百合的盛世恋 2024-10-18 12:34:00

在您的项目目录中,您将找到一个名为“your-design.xst”的文件。您可以在列表末尾(或“运行”之后的任何位置)添加以下内容:

-ram_style block # ( | auto | distributed )
-rom_style block # ( | auto | distributed )

这些应确保您将获得 BRAM 映射而不是分布式 RAM(这意味着基于 LUT 的内存)。

此选项也可能会派上用场:

-auto_bram_packing yes # ( | no )

请记住,每个选项都必须独占一行,并且您需要删除“#”及其后的任何内容。

如果您使用 ISE GUI,请转至

Synthesis -> Process Properties -> HDL options

并选择上述选项。

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"):

-ram_style block # ( | auto | distributed )
-rom_style block # ( | auto | distributed )

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:

-auto_bram_packing yes # ( | no )

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

Synthesis -> Process Properties -> HDL options

and choose the above options there.

心凉怎暖 2024-10-18 12:34:00

run -ram_style BLOCK 可以在命令行中完成此操作。

run -ram_style BLOCK can do the trick in command line.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文