|
Posted at 9/17/2022 00:59:52
Only Author
3#
$ vulkaninfo
ERROR: [Loader Message] Code 0 : loader_scanned_icd_add: Attempt to retrieve either 'vkGetInstanceProcAddr' or 'vk_icdGetInstanceProcAddr' from ICD libmali.so failed.
Cannot create Vulkan instance.
This problem is often caused by a faulty installation of the Vulkan driver or attempting to use a GPU that does not support Vulkan.
/build/vulkan-tools-_ynL0i/vulkan-tools-1.2.131.1+dfsg1/vulkaninfo/vulkaninfo.h:371: failed with ERROR_INCOMPATIBLE_DRIVER
So the vulkan ICD loader is looking for specific vk* symbols in the GPU userspace library, but they are not there. I have checked all the relevant libraries and they are completely missing. So the problem is not the loader but the GPU driver libraries. The libmali libraries have not been compiled with vulkan support enabled. |
|