add experimental sysfs amd gpu collector (#737, #1569)

This commit is contained in:
henrygd
2026-01-29 18:35:57 -05:00
parent 6723ec8ea4
commit c7f7f51c99
3 changed files with 220 additions and 4 deletions

View File

@@ -0,0 +1,15 @@
//go:build !linux
package agent
import (
"errors"
)
func (gm *GPUManager) hasAmdSysfs() bool {
return false
}
func (gm *GPUManager) collectAmdStats() error {
return errors.ErrUnsupported
}