13 lines
185 B
Go
13 lines
185 B
Go
//go:build !windows
|
|
|
|
package gpu
|
|
|
|
type gpuName struct {
|
|
Name string
|
|
Vendor string
|
|
}
|
|
|
|
func detectGPUNames() []gpuName {
|
|
return []gpuName{{Name: "Default GPU", Vendor: "unknown"}}
|
|
}
|