QT + CUDA设置qmake.pro文件

发布于 2024-12-10 13:52:05 字数 226 浏览 0 评论 0原文

我正在尝试使用 Helloworld.cu 示例制作一个简单的 Qt + Cuda 框架。这是有史以来最简单的 Qt。我正在尝试使用 .pro 文件创建项目文件。我的设置是 Windows 7、Qt 4.7.4 和 Cuda 工具包 + SDK(最新版本)。 Qt 的一切都正常。不起作用的是代码的 Cuda 部分,这可能是因为 .pro 文件中缺少某些内容...是否有一个简单的粘贴/复制可以用于我的 .pro 文件中的 cuda?谢谢

I'm trying to do a simple Qt + Cuda framework with an Helloworld.cu example. It is the simplest Qt ever. I'm trying to create the project file using a .pro file. My setup is windows 7, Qt 4.7.4 and Cuda toolkit + SDK (last version). Everything for Qt is working. What is not working is the Cuda part of the code, and that's probably because there is something missing in the .pro file...is there a simple paste/copy i could use for cuda in my .pro file? thanks

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

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

发布评论

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

评论(1

心在旅行 2024-12-17 13:52:05

看看 http://cudaspace.wordpress.com/ 2011/04/07/qt-creator-cuda-linux/

您必须调整

# Path to cuda SDK install
CUDA_SDK = /pathto/NVIDIA_GPU_Computing_SDK/C (note i'm using a linux machine)
# Path to cuda toolkit install
CUDA_DIR = /usr/local/cuda

# libs - note than i'm using a x_86_64 machine
LIBS += -lcudart -lcutil_x86_64

您的CUDA SDK、Windows下的CUDA Toolkit目录以及LIBS的名称。

也许您需要针对 32 位和 64 位调整架构 m32 或 m64。

希望这有帮助。

Take a look at http://cudaspace.wordpress.com/2011/04/07/qt-creator-cuda-linux/

You must adjust

# Path to cuda SDK install
CUDA_SDK = /pathto/NVIDIA_GPU_Computing_SDK/C (note i'm using a linux machine)
# Path to cuda toolkit install
CUDA_DIR = /usr/local/cuda

# libs - note than i'm using a x_86_64 machine
LIBS += -lcudart -lcutil_x86_64

with your CUDA SDK, CUDA Toolkit directories under windows and the name of the LIBS.

Maybe you will need to adjust the architecture m32 or m64 for 32 and 64 bits.

Hope this help.

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