CUDA版本混乱

发布于 2024-10-24 04:52:44 字数 113 浏览 1 评论 0原文


我想开始学习 CUDA,但我对版本感到困惑。 CUDA 的最新版本是 3,我的系统上有 CUDA 3.0.1 驱动程序,但理论上我的显卡仅支持 1.0。我可以使用更高版本的功能还是需要坚持使用 1.0?

I'd like to begin learning CUDA but I'm confused about the versions. The latest release of CUDA is 3 and I have the CUDA 3.0.1 driver on my system but in theory my graphics card only supports 1.0. Can I use the features of the later versions or I need to stick to the 1.0?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

望她远 2024-10-31 04:52:44

最新的公开版本是 3.2,但 4.0 已向注册开发人员推出测试版。兼容性基于硬件支持的功能。您可以使用最新版本的 SDK,但需要针对您的卡支持的功能集进行编译,并且不要尝试使用不支持的 SDK 功能。您可以通过设置 arch 标志来完成此操作。

这里有一些解释:

Fermi 兼容性指南 - NVIDIA

The latest public release is 3.2 but 4.0 is out in beta to registered developers. Compatibility is based on the features that the hardware supports. You can use the latest version of the SDK but will need to compile for the feature set supported by your card and not attempt to use SDK features that are not supported. You do this by setting the arch flag.

There's some explanation here:

Fermi Compatibility Guide - NVIDIA

爱*していゐ 2024-10-31 04:52:44

CUDA工具包版本(3.1、3.2、4.0)与显卡计算能力不同(1.0 / 1.1适用于较旧的geforce卡,1.2适用于许多移动卡,1.3适用于稍旧的geforce,2.0+适用于最新的fermi架构)。所有工具包均适用于所有支持 cuda 的显卡。尽管完整的功能可能不可用,但您仍然可以编写功能性 cuda 代码。

CUDA toolkit versions (3.1, 3.2, 4.0) are different from the graphics card compute capability (1.0 / 1.1 for older geforce cards, 1.2 for many mobile cards, 1.3 for slightly old geforce, 2.0+ for the latest fermi architecture). All the toolkits work with all cuda capable graphics cards. Although the complete functionality may not be available, you can still write functional cuda code.

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