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 2feac8a commit cd20ef0Copy full SHA for cd20ef0
ggml/src/ggml-vulkan/ggml-vulkan.cpp
@@ -3929,7 +3929,8 @@ static vk_device ggml_vk_get_device(size_t idx) {
3929
device->disable_fusion = getenv("GGML_VK_DISABLE_FUSION") != nullptr;
3930
3931
device->add_rms_fusion = !device->disable_fusion &&
3932
- device->subgroup_add;
+ device->subgroup_add &&
3933
+ device->vendor_id != VK_VENDOR_ID_INTEL;
3934
device->partials_binding_alignment =
3935
std::max(4u, (uint32_t)device->properties.limits.minStorageBufferOffsetAlignment);
3936
0 commit comments