QT + CUDA设置qmake.pro文件
我正在尝试使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看看 http://cudaspace.wordpress.com/ 2011/04/07/qt-creator-cuda-linux/
您必须调整
您的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
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.