From: Simon Redman Date: Fri, 30 Jan 2026 16:27:16 +0000 (-0500) Subject: Correctly fetch q8_1 quantize pipeline in test as needed by 8a3519b (llama/19194) X-Git-Tag: upstream/1.8.3+155~77 X-Git-Url: https://git.djapps.eu/?a=commitdiff_plain;h=efd6344939a03c0e5fd41220856055040d0712fd;p=pkg%2Fggml%2Fsources%2Fwhisper.cpp Correctly fetch q8_1 quantize pipeline in test as needed by 8a3519b (llama/19194) --- diff --git a/ggml/src/ggml-vulkan/ggml-vulkan.cpp b/ggml/src/ggml-vulkan/ggml-vulkan.cpp index 3852867c..a99375c0 100644 --- a/ggml/src/ggml-vulkan/ggml-vulkan.cpp +++ b/ggml/src/ggml-vulkan/ggml-vulkan.cpp @@ -11956,7 +11956,8 @@ static void ggml_vk_test_dequant_matmul(ggml_backend_vk_context * ctx, size_t m, } } if (mmq) { - ggml_pipeline_request_descriptor_sets(ctx, ctx->device->pipeline_quantize_q8_1, num_it); + vk_pipeline pipeline_quantize_q8_1 = ggml_vk_get_quantize_pipeline(ctx, GGML_TYPE_Q8_1); + ggml_pipeline_request_descriptor_sets(ctx, pipeline_quantize_q8_1, num_it); } ggml_pipeline_allocate_descriptor_sets(ctx);