Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions ggml/src/ggml-vulkan/ggml-vulkan.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -8777,6 +8777,11 @@ static bool ggml_vk_should_use_mmvq(const vk_device& device, uint32_t m, uint32_
if (k < 2048) {
return false;
}
// On UMA, MMVQ's quantization overhead outweighs bandwidth savings
// because CPU and GPU share the same memory pool.
if (device->uma) {
return false;
}

switch (src0_type) {
case GGML_TYPE_Q8_0:
Expand Down