Files

15 lines
231 B
Go
Raw Permalink Normal View History

2026-07-29 10:46:19 +08:00
//go:build !windows
package gpu
type gpuName struct {
Name string
Vendor string
}
func detectGPUNames() []gpuName {
return []gpuName{{Name: "Default GPU", Vendor: "unknown"}}
}
2026-07-29 19:33:46 +08:00
func detectCPUName() string { return "CPU" }