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 8fb7a1c commit d3d7daeCopy full SHA for d3d7dae
ggml/src/ggml-vulkan/ggml-vulkan.cpp
@@ -2188,6 +2188,10 @@ static vk_device ggml_vk_get_device(size_t idx) {
2188
device->coopmat_support = false;
2189
}
2190
2191
+ #if !defined(GGML_VULKAN_COOPMAT_GLSLC_SUPPORT) //prevent crash if we do a non-coopmat build
2192
+ device->coopmat_support = false;
2193
+ #endif
2194
+
2195
std::vector<vk::QueueFamilyProperties> queue_family_props = device->physical_device.getQueueFamilyProperties();
2196
2197
// Try to find a non-graphics compute queue and transfer-focused queues
0 commit comments