Hello. I’m using a embedded linux platform and want to deploy pytorch models on the ARM MALI GPU. I’m setting the Vulkan delegate but having problems when building the runner with Vulkan. All tutorials I’ve found are related to Android development and Vulkan linking of libraries is done automatically with the Android NDK, but I’m not able to link the CMAKE to my GLSL compiler. I have glslangValidator installed instead of glslc.
Is that supported? Are there any other limitations we should consider when using the Vulkan delegate out of Android?
Hello @Alex_G_Gener, thanks for your interest in the Vulkan delegate and apologies for the super late reply. Anecdotally, I am able to compile and execute the Vulkan delegate on a Linux platform. You can try the same with the following commands
As for glslc vs glslangValidator, there is currently an assumption that glslc is the shader compiler of choice since that is what’s included in the Android NDK. However, it should be easy to add a build configuration to specify that glslangValidator should be used instead.