From 8300a55e1d18f12597fd37dbe6bc57f679d0ceda Mon Sep 17 00:00:00 2001 From: Inforithmics Date: Sat, 30 Aug 2025 20:26:53 +0200 Subject: [PATCH] Fix Unit Test (Add Vulkan Library) --- discover/gpu_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/discover/gpu_test.go b/discover/gpu_test.go index 0c6ef7bad..76ab7dfba 100644 --- a/discover/gpu_test.go +++ b/discover/gpu_test.go @@ -11,7 +11,7 @@ import ( func TestBasicGetGPUInfo(t *testing.T) { info := GetGPUInfo() assert.NotEmpty(t, len(info)) - assert.Contains(t, "cuda rocm cpu metal", info[0].Library) + assert.Contains(t, "cuda rocm cpu metal vulkan", info[0].Library) if info[0].Library != "cpu" { assert.Greater(t, info[0].TotalMemory, uint64(0)) assert.Greater(t, info[0].FreeMemory, uint64(0))