beszel / src /agent /gpu_nvml_unsupported.go
cacodex's picture
Deploy Beszel hub with ephemeral Space recovery
3959f31 verified
Raw
History Blame Contribute Delete
290 Bytes
//go:build (!linux && !windows) || !amd64 || (linux && !glibc)
package agent
import "fmt"
type nvmlCollector struct {
gm *GPUManager
}
func (c *nvmlCollector) init() error {
return fmt.Errorf("nvml not supported on this platform")
}
func (c *nvmlCollector) start() {}