Add Intel sysfs GPU power collector (Xe/i915 hwmon energy counters) (#2020)

This commit is contained in:
T.J. Tarazevits
2026-08-16 10:20:43 -05:00
committed by GitHub
parent b4e1f3fafe
commit 3688b2d033
5 changed files with 532 additions and 4 deletions

View File

@@ -0,0 +1,13 @@
//go:build !linux
package agent
type intelSysfsEnergySnapshot struct{}
func (gm *GPUManager) hasIntelSysfs() bool {
return false
}
func (gm *GPUManager) startIntelSysfsCollector() bool {
return false
}