Visual Studio 中的 Cuda 编译问题
我必须使用 CUDA 将人群模拟应用程序移植到 GPU 上。为此,我请 Simon Boots 完成了这项工作,他已成功将 C++ opensteer 库移植到 CUDA 上。但我无法在我的电脑上运行 CUDA 版本。我附加了 CUDA 代码的链接,但是当我在 Visual Studio 上运行它时,它在解决方案资源管理器中没有显示任何 cuda 文件。相反,它运行 CPU 版本。谢谢。
代码链接:
https://github.com/simonboots/OpenSteerCUDA
简而言之,我的问题是,帮帮我编译此 CUDA 代码。我需要将它用于我的学习。我还是一个初学者。谢谢。
I have to port a crowd simulation application onto GPU using CUDA. For that I have this work done by Simon Boots who has ported C++ opensteer library onto CUDA successfully. But I am unable to run the CUDA version on my PC. I am attaching the link for the CUDA code but when i run it on visual studio it does not show any cuda files in solution explorer. Instead it runs the CPU version. Thanks.
Code link:
https://github.com/simonboots/OpenSteerCUDA
In short, my question is, help me compile this CUDA code. I need to use it for my learning. I am still a beginner. thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试寻找描述如何做您想做的事情的教程或自述文件。您可能需要启用一个预处理器标志 (#define) 或脚本来告诉编译器构建 GPU 版本。
Try looking for a tutorial or ReadMe that describes how to do what you are trying to do. There is probably a Preprocessor flag (#define) or script that you need to enable to tell the compiler to build the GPU version.