From 48db724bc7ed582e23f0657ecb784502a16432bc Mon Sep 17 00:00:00 2001 From: Jared Van Bortel Date: Mon, 29 Jan 2024 14:15:18 -0500 Subject: [PATCH] minor fixup --- ggml-kompute.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ggml-kompute.cpp b/ggml-kompute.cpp index 1704bc9da..bfc9d96f6 100644 --- a/ggml-kompute.cpp +++ b/ggml-kompute.cpp @@ -340,7 +340,7 @@ ggml_vk_device ggml_vk_current_device() { if (!komputeManager()->hasDevice()) return ggml_vk_device(); - auto devices = ggml_vk_available_devices(0); + auto devices = ggml_vk_available_devices_internal(0); ggml_vk_filterByName(devices, komputeManager()->physicalDevice()->getProperties().deviceName.data()); GGML_ASSERT(!devices.empty()); return devices.front();