Files
2026-09-11 06:14:38 +02:00

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")
}