如何让 Vulkan API 在 Google Colab 中工作
How can I get the Vulkan API working in Google Colab
我尝试 运行ning realsr-ncnn-vulkan 来测试在 Google 的 Colab 平台上放大简单图像。
https://github.com/nihui/realsr-ncnn-vulkan
问题是,一旦我尝试 运行 它,我就会收到错误消息
error while loading shared libraries: libvulkan.so.1: cannot open shared object file: No such file or directory
那么在 运行 之前我需要安装什么?或者尽管 GPU 非常强大,但没有办法让 vulkan 工作?
您缺少库:
根据您需要的设置:
dnf install vulkan-headers vulkan-loader-devel
或
apt-get install libvulkan-dev
或
pacman -S vulkan-headers vulkan-icd-loader
我尝试 运行ning realsr-ncnn-vulkan 来测试在 Google 的 Colab 平台上放大简单图像。 https://github.com/nihui/realsr-ncnn-vulkan
问题是,一旦我尝试 运行 它,我就会收到错误消息
error while loading shared libraries: libvulkan.so.1: cannot open shared object file: No such file or directory
那么在 运行 之前我需要安装什么?或者尽管 GPU 非常强大,但没有办法让 vulkan 工作?
您缺少库:
根据您需要的设置:
dnf install vulkan-headers vulkan-loader-devel
或
apt-get install libvulkan-dev
或
pacman -S vulkan-headers vulkan-icd-loader