XCode 和 CUDA 集成
只是想知道是否有人有使用 CUDA 和 XCode 的经验?我正在做一场噩梦,把这一切都安排好……
道森
Was just wondering if anyone has any experience working with CUDA and XCode? I'm having a nightmare setting it all up...
Dawson
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我正在使用 XCode、CMAKE 和CUDA。到目前为止没有任何问题!工作起来就像一个魅力,尽管您需要确保 XCode 使用的是 gcc 4.0 而不是 4.2(如果是 10.6)。
我建议您还结合使用 CMAKE 和 FindCUDA.cmake 来生成 xcode 项目文件。 FindCUDA.cmake is here
还有一个 XCode 的插件,使其成为识别 .cu 文件,在消息 #29 中的此处找到。 这里还提供了一个很好的“教程”,提到了该插件。
I'm working with XCode, CMAKE & CUDA. No problems so far! Works like a charm, though you'll need to make sure, that XCode is using the gcc 4.0 instead of 4.2 (in case of 10.6).
I suggest you to also use CMAKE in combination with FindCUDA.cmake for generating the xcode project file. FindCUDA.cmake is here
There is also a plugin for XCode, making it recognize .cu files, found here in message #29. Also a good "tutorial" is given here, mentioning the plugin.