在 Linux 上找到 CUDA 安装

发布于 2024-10-14 15:31:55 字数 273 浏览 1 评论 0原文

最好的办法是什么? 这是我的解决方案:

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

ζ澈沫 2024-10-21 15:31:55

基于 ldconfig -p | 的东西如何做? grep libcuda 声音?在本文末尾明确建议考虑适当的 ldconfig 设置我认为,安装 CUDA 工具包后,无需路径就可以很好地完成任务。

How does something based onldconfig -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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文