Skip to content

Commit e6d79f1

Browse files
committed
disable fwht shader on Intel Windows due to driver bug
1 parent 6833f86 commit e6d79f1

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

ggml/src/ggml-vulkan/ggml-vulkan.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5047,7 +5047,8 @@ static void ggml_vk_load_shaders(vk_device& device) {
50475047
}
50485048
++idx;
50495049
}
5050-
} else {
5050+
} else if (device->driver_id != vk::DriverId::eIntelProprietaryWindows) {
5051+
// Disabled on Intel Windows due to a driver bug: https://github.com/ggml-org/llama.cpp/pull/23964#issuecomment-4598226147
50515052
int idx = 0;
50525053
for (uint32_t n : {64, 128, 256, 512}) {
50535054
const uint32_t block_size = std::min(device->subgroup_size, n);

0 commit comments

Comments
 (0)