From b4acc6d3d60448fdc193805eaae3a164e989aa50 Mon Sep 17 00:00:00 2001 From: Ruben Ortlam Date: Tue, 25 Aug 2026 12:33:50 +0200 Subject: [PATCH] fix compile issue --- ggml/src/ggml-vulkan/ggml-vulkan.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ggml/src/ggml-vulkan/ggml-vulkan.cpp b/ggml/src/ggml-vulkan/ggml-vulkan.cpp index 00ec7dfa0c..2b76e9176f 100644 --- a/ggml/src/ggml-vulkan/ggml-vulkan.cpp +++ b/ggml/src/ggml-vulkan/ggml-vulkan.cpp @@ -19050,10 +19050,10 @@ static void * ggml_backend_vk_comm_init(ggml_backend_t * backends, size_t n_back comm->xfer_pool_max_val.assign(n_backends, 0); comm->ring_ok = true; for (size_t i = 0; i < n_backends; i++) { - comm->cmd_pool[i].init(comm->device[i], &comm->device[i]->compute_queue); - comm->cmd_pool_xfer[i].init(comm->device[i], &comm->device[i]->transfer_queue); + comm->cmd_pool[i].init(comm->device[i], comm->device[i]->compute_queue.get()); + comm->cmd_pool_xfer[i].init(comm->device[i], comm->device[i]->transfer_queue.get()); if (comm->device[i]->single_queue || - comm->device[i]->transfer_queue.queue == comm->device[i]->compute_queue.queue) { + comm->device[i]->transfer_queue->handle->queue == comm->device[i]->compute_queue->handle->queue) { comm->ring_ok = false; } }