We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 06c1e4a commit dcbe214Copy full SHA for dcbe214
ggml/src/ggml-vulkan/ggml-vulkan.cpp
@@ -3137,6 +3137,8 @@ static vk_device ggml_vk_get_device(size_t idx) {
3137
}
3138
3139
if (!vk11_features.storageBuffer16BitAccess) {
3140
+ // We need this for Android, because we don't know until we test if a device has 16-bit storage.
3141
+ GGML_LOG_ERROR("ggml_vulkan: device %s %d does not support 16-bit storage.", GGML_VK_NAME, idx);
3142
std::cerr << "ggml_vulkan: device " << GGML_VK_NAME << idx << " does not support 16-bit storage." << std::endl;
3143
throw std::runtime_error("Unsupported device");
3144
0 commit comments