13 lines
202 B
Go
13 lines
202 B
Go
//go:build !linux
|
|
|
|
package hoststats
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
)
|
|
|
|
func readAMD(context.Context, string) (AMD, error) {
|
|
return AMD{}, fmt.Errorf("AMDGPU sysfs telemetry is supported only on Linux")
|
|
}
|