DeviceHealth

Health status of an AMD GPU device.

AICloud ComputingGPUHPCMachine LearningSemiconductorFortune 500

Properties

Name Type Description
deviceId string
status string
temperature integer
fanSpeed integer
powerDraw number
eccErrors integer
View JSON Schema on GitHub

JSON Schema

rocm-api-device-health-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "DeviceHealth",
  "description": "Health status of an AMD GPU device.",
  "type": "object",
  "properties": {
    "deviceId": {
      "type": "string"
    },
    "status": {
      "type": "string",
      "enum": [
        "healthy",
        "warning",
        "critical",
        "unknown"
      ]
    },
    "temperature": {
      "type": "integer"
    },
    "fanSpeed": {
      "type": "integer"
    },
    "powerDraw": {
      "type": "number"
    },
    "eccErrors": {
      "type": "integer"
    }
  }
}