From 0d277d32db8a56aa42e2fdeea2c81202a364c8da Mon Sep 17 00:00:00 2001 From: tomaThomas Date: Sat, 25 Jan 2025 11:23:25 +0100 Subject: [PATCH] Fix variable name --- discover/gpu.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/discover/gpu.go b/discover/gpu.go index 15d0b99a4..1b6a3f075 100644 --- a/discover/gpu.go +++ b/discover/gpu.go @@ -440,7 +440,7 @@ func GetGPUInfo() GpuInfoList { gpuInfo.ID = C.GoString(&memInfo.gpu_id[0]) gpuInfo.Compute = fmt.Sprintf("%d.%d", memInfo.major, memInfo.minor) gpuInfo.MinimumMemory = 0 - gpuInfo.DependencyPath = depPath + gpuInfo.DependencyPath = depPaths gpuInfo.Name = C.GoString(&memInfo.gpu_name[0]) gpuInfo.DriverMajor = int(memInfo.major) gpuInfo.DriverMinor = int(memInfo.minor)