在 Linux 上找到 CUDA 安装
最好的办法是什么? 这是我的解决方案:
echo $PATH | sed "s/:/\n/g" | grep "cuda/bin" | sed "s/\/bin//g" | head -n 1
which nvcc | sed "s/\/bin\/nvcc//"
which nvcc | head -c -10
它们都是基于路径的。人们可以找到图书馆。 如果 PATH 中没有 CUDA 路径,它会更加稳健。
我在 Makefile 中使用它。
What's the best way?
Here are my solutions:
echo $PATH | sed "s/:/\n/g" | grep "cuda/bin" | sed "s/\/bin//g" | head -n 1
which nvcc | sed "s/\/bin\/nvcc//"
which nvcc | head -c -10
They are all PATH-based. One could locate libraries instead.
It would be more robust if there are no CUDA paths in PATH.
I'm using this in a Makefile.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
基于 ldconfig -p | 的东西如何做? grep libcuda 声音?在本文末尾明确建议考虑适当的 ldconfig 设置我认为,安装 CUDA 工具包后,无需路径就可以很好地完成任务。
How does something based on
ldconfig -p | grep libcuda
sound ? Considering an appropriate ldconfig setup is explicitly advised at the end of the installation of the CUDA toolkit, it should do the trick without path nicely, I think.