Fix variable name

This commit is contained in:
tomaThomas 2025-01-25 11:23:25 +01:00
parent f7e40b587f
commit 0d277d32db
No known key found for this signature in database
GPG Key ID: DEE963DC84059108
1 changed files with 1 additions and 1 deletions

View File

@ -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)