Chat / pkg /xsysinfo /gpu.go
Baraaqasem's picture
Upload 711 files
651d019 verified
raw
history blame contribute delete
230 Bytes
package xsysinfo
import (
"github.com/jaypipes/ghw"
"github.com/jaypipes/ghw/pkg/gpu"
)
func GPUs() ([]*gpu.GraphicsCard, error) {
gpu, err := ghw.GPU()
if err != nil {
return nil, err
}
return gpu.GraphicsCards, nil
}