mirror of
https://github.com/henrygd/beszel.git
synced 2026-03-22 21:46:18 +01:00
16 lines
196 B
Go
16 lines
196 B
Go
//go:build !linux
|
|
|
|
package agent
|
|
|
|
import (
|
|
"errors"
|
|
)
|
|
|
|
func (gm *GPUManager) hasAmdSysfs() bool {
|
|
return false
|
|
}
|
|
|
|
func (gm *GPUManager) collectAmdStats() error {
|
|
return errors.ErrUnsupported
|
|
}
|