Device

An AMD GPU device.

AICloud ComputingGPUHPCMachine LearningSemiconductorFortune 500

Properties

Name Type Description
id string
name string
model string
vbios string
driverVersion string
memoryTotal integer Total GPU memory GB.
pcieBusId string
computeUnits integer
View JSON Schema on GitHub

JSON Schema

rocm-api-device-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "Device",
  "description": "An AMD GPU device.",
  "type": "object",
  "properties": {
    "id": {
      "type": "string"
    },
    "name": {
      "type": "string"
    },
    "model": {
      "type": "string"
    },
    "vbios": {
      "type": "string"
    },
    "driverVersion": {
      "type": "string"
    },
    "memoryTotal": {
      "type": "integer",
      "description": "Total GPU memory GB."
    },
    "pcieBusId": {
      "type": "string"
    },
    "computeUnits": {
      "type": "integer"
    }
  }
}