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 64ee084 commit 7658305Copy full SHA for 7658305
ggml/src/ggml-vulkan/ggml-vulkan.cpp
@@ -3902,7 +3902,8 @@ static vk_device ggml_vk_get_device(size_t idx) {
3902
device->disable_fusion = getenv("GGML_VK_DISABLE_FUSION") != nullptr;
3903
3904
device->add_rms_fusion = !device->disable_fusion &&
3905
- device->subgroup_add;
+ device->subgroup_add &&
3906
+ device->vendor_id != VK_VENDOR_ID_INTEL;
3907
device->partials_binding_alignment =
3908
std::max(4u, (uint32_t)device->properties.limits.minStorageBufferOffsetAlignment);
3909
0 commit comments