Note that I use a custom toolchain, the following tips may or may not be the case for your builds.
My custom build for Vulkan produces fully functional executables that are slightly faster than the executables in the official Vulkan release.
Anyway, in my build I add the following preprocessor directives to avoid build errors (undefined etc.):
#include <atomic> to external/ggml/src/ggml-vulkan/ggml-vulkan.cpp
#include <algorithm> to src/community_models/kroko_asr/encoder.cpp
#include <algorithm> to src/models/seed_vc/v2_cfm.cpp
Enjoy
Note that I use a custom toolchain, the following tips may or may not be the case for your builds.
My custom build for Vulkan produces fully functional executables that are slightly faster than the executables in the official Vulkan release.
Anyway, in my build I add the following preprocessor directives to avoid build errors (undefined etc.):
#include <atomic>toexternal/ggml/src/ggml-vulkan/ggml-vulkan.cpp#include <algorithm>tosrc/community_models/kroko_asr/encoder.cpp#include <algorithm>tosrc/models/seed_vc/v2_cfm.cppEnjoy