We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Configure prints this:
-- Enabling Vulkan target
but this code evaluates to false:
find_gpu_target().has_gpu_feature();
Binaries aren't linked with vulkan libraries.
Version: 18.0.0 clang-18 FreeBSD 14.1
The text was updated successfully, but these errors were encountered:
It's correct that the binaries aren't linked with vulkan libraries. They dlopen them instead.
find_gpu_target in tutorial lesson 12 doesn't consider Vulkan as a possibility. I'm hesitant to enable it, because we don't currently test vulkan on the bots due to some outstanding bugs (see https://github.com/halide/Halide/issues?q=is%3Aissue+is%3Aopen+vulkan)
Sorry, something went wrong.
So how to use it then if I just want to see whether it works?
Change find_gpu_target to just return Target{"host-vulkan-vk_int8-vk_int16-vk_int64-vk_float16-vk_float64-vk_v13"}
Target{"host-vulkan-vk_int8-vk_int16-vk_int64-vk_float16-vk_float64-vk_v13"}
Or just Target{"host-vulkan"} if you want to go with the minimum supported feature set.
Target{"host-vulkan"}
No branches or pull requests
Configure prints this:
but this code evaluates to false:
Binaries aren't linked with vulkan libraries.
Version: 18.0.0
clang-18
FreeBSD 14.1
The text was updated successfully, but these errors were encountered: