CUDA:仅在设备模拟模式下出现链接错误
我正在编译一个 dll,除非我使用 -deviceemu 模式,否则它运行得很好。
在这种情况下,我收到以下几个链接错误:
<块引用>CUDAKernel_ColourHist.obj:错误LNK2019:无法解析的外部符号 ___cudaMutexOperation@4 在函数 ___uAtomicAdd 中引用 1>CUDAKernel_1.obj:错误LNK2001: 未解析的外部符号 ___cudaMutexOperation@4 1>CUDAKernel_2.obj:错误LNK2001: 未解析的外部符号 ___cudaMutexOperation@4
这让我相信也许我没有链接正确的文件,但我相信我是。我正在使用 Visual Studio,任何帮助将不胜感激。
I am compiling a dll which goes just fine unless I use the -deviceemu mode.
In this case I get several of the following linking errors:
CUDAKernel_ColourHist.obj : error LNK2019: unresolved external symbol
___cudaMutexOperation@4 referenced in function ___uAtomicAdd
1>CUDAKernel_1.obj : error LNK2001:
unresolved external symbol
___cudaMutexOperation@4 1>CUDAKernel_2.obj : error LNK2001:
unresolved external symbol
___cudaMutexOperation@4
Which led me to believe perhaps I wasn't linking the correct files, but I believe I am. I am using Visual Studio and any help woud be appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
已修复,我使用的是旧版本的库,与新库的链接修复了问题。
Fixed, I was using an older version of the libraries, linking with the newer libraries fixed the problem.