feat(inputs.amd_rocm_smi): Parse newer ROCm versions (#15628)

This commit is contained in:
Joshua Powers 2024-07-19 03:00:24 -06:00 committed by GitHub
parent 41553ff2d7
commit a6270b71f9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
9 changed files with 1595 additions and 12 deletions

View File

@ -48,10 +48,10 @@ using the `startup_error_behavior` setting. Available values are:
- fields
- `driver_version` (integer)
- `fan_speed`(integer)
- `memory_total`(integer B)
- `memory_used`(integer B)
- `memory_free`(integer B)
- `fan_speed` (integer)
- `memory_total` (integer, B)
- `memory_used` (integer, B)
- `memory_free` (integer, B)
- `temperature_sensor_edge` (float, Celsius)
- `temperature_sensor_junction` (float, Celsius)
- `temperature_sensor_memory` (float, Celsius)
@ -59,7 +59,13 @@ using the `startup_error_behavior` setting. Available values are:
- `utilization_memory` (integer, percentage)
- `clocks_current_sm` (integer, Mhz)
- `clocks_current_memory` (integer, Mhz)
- `clocks_current_display` (integer, Mhz)
- `clocks_current_fabric` (integer, Mhz)
- `clocks_current_system` (integer, Mhz)
- `power_draw` (float, Watt)
- `card_series` (string)
- `card_model` (string)
- `card_vendor` (string)
## Troubleshooting

View File

@ -154,7 +154,11 @@ func genTagsFields(gpus map[string]GPU, system map[string]sysInfo) []metric {
usdVRAM, _ := strconv.ParseInt(payload.GpuVRAMTotalUsedMemory, 10, 64)
strFree := strconv.FormatInt(totVRAM-usdVRAM, 10)
// Try using value found in Device ID first. If not found, try GPU
// ID for backwards compatibility.
setTagIfUsed(tags, "gpu_id", payload.DeviceID)
setTagIfUsed(tags, "gpu_id", payload.GpuID)
setTagIfUsed(tags, "gpu_unique_id", payload.GpuUniqueID)
setIfUsed("int", fields, "driver_version", strings.ReplaceAll(system["system"].DriverVersion, ".", ""))
@ -166,10 +170,18 @@ func genTagsFields(gpus map[string]GPU, system map[string]sysInfo) []metric {
setIfUsed("float", fields, "temperature_sensor_junction", payload.GpuTemperatureSensorJunction)
setIfUsed("float", fields, "temperature_sensor_memory", payload.GpuTemperatureSensorMemory)
setIfUsed("int", fields, "utilization_gpu", payload.GpuUsePercentage)
// Try using allocated percentage first.
setIfUsed("int", fields, "utilization_memory", payload.GpuMemoryAllocatedPercentage)
setIfUsed("int", fields, "utilization_memory", payload.GpuMemoryUsePercentage)
setIfUsed("int", fields, "clocks_current_sm", strings.Trim(payload.GpuSclkClockSpeed, "(Mhz)"))
setIfUsed("int", fields, "clocks_current_memory", strings.Trim(payload.GpuMclkClockSpeed, "(Mhz)"))
setIfUsed("int", fields, "clocks_current_display", strings.Trim(payload.GpuDcefClkClockSpeed, "(Mhz)"))
setIfUsed("int", fields, "clocks_current_fabric", strings.Trim(payload.GpuFclkClockSpeed, "(Mhz)"))
setIfUsed("int", fields, "clocks_current_system", strings.Trim(payload.GpuSocclkClockSpeed, "(Mhz)"))
setIfUsed("float", fields, "power_draw", payload.GpuAveragePower)
setIfUsed("str", fields, "card_series", payload.GpuCardSeries)
setIfUsed("str", fields, "card_model", payload.GpuCardModel)
setIfUsed("str", fields, "card_vendor", payload.GpuCardVendor)
metrics = append(metrics, metric{tags, fields})
}
@ -225,22 +237,23 @@ type sysInfo struct {
}
type GPU struct {
DeviceID string `json:"Device ID"`
GpuID string `json:"GPU ID"`
GpuUniqueID string `json:"Unique ID"`
GpuVBIOSVersion string `json:"VBIOS version"`
GpuTemperatureSensorEdge string `json:"Temperature (Sensor edge) (C)"`
GpuTemperatureSensorJunction string `json:"Temperature (Sensor junction) (C)"`
GpuTemperatureSensorMemory string `json:"Temperature (Sensor memory) (C)"`
GpuDcefClkClockSpeed string `json:"dcefclk clock speed"`
GpuDcefClkClockLevel string `json:"dcefclk clock level"`
GpuFclkClockSpeed string `json:"fclk clock speed"`
GpuFclkClockLevel string `json:"fclk clock level"`
GpuDcefClkClockSpeed string `json:"dcefclk clock speed:"`
GpuDcefClkClockLevel string `json:"dcefclk clock level:"`
GpuFclkClockSpeed string `json:"fclk clock speed:"`
GpuFclkClockLevel string `json:"fclk clock level:"`
GpuMclkClockSpeed string `json:"mclk clock speed:"`
GpuMclkClockLevel string `json:"mclk clock level:"`
GpuSclkClockSpeed string `json:"sclk clock speed:"`
GpuSclkClockLevel string `json:"sclk clock level:"`
GpuSocclkClockSpeed string `json:"socclk clock speed"`
GpuSocclkClockLevel string `json:"socclk clock level"`
GpuSocclkClockSpeed string `json:"socclk clock speed:"`
GpuSocclkClockLevel string `json:"socclk clock level:"`
GpuPcieClock string `json:"pcie clock level"`
GpuFanSpeedLevel string `json:"Fan speed (level)"`
GpuFanSpeedPercentage string `json:"Fan speed (%)"`
@ -250,6 +263,7 @@ type GPU struct {
GpuMaxPower string `json:"Max Graphics Package Power (W)"`
GpuAveragePower string `json:"Average Graphics Package Power (W)"`
GpuUsePercentage string `json:"GPU use (%)"`
GpuMemoryAllocatedPercentage string `json:"GPU Memory Allocated (VRAM%)"`
GpuMemoryUsePercentage string `json:"GPU memory use (%)"`
GpuMemoryVendor string `json:"GPU memory vendor"`
GpuPCIeReplay string `json:"PCIe Replay Count"`

View File

@ -107,6 +107,8 @@ func TestGatherValidJSON(t *testing.T) {
"name": "card0",
},
map[string]interface{}{
"card_model": "0xc1e",
"card_vendor": "Advanced",
"driver_version": 5925,
"fan_speed": 13,
"memory_total": int64(17163091968),
@ -116,8 +118,10 @@ func TestGatherValidJSON(t *testing.T) {
"temperature_sensor_junction": 40.0,
"temperature_sensor_memory": 92.0,
"utilization_gpu": 0,
"clocks_current_display": 600,
"clocks_current_sm": 1269,
"clocks_current_memory": 167,
"clocks_current_system": 960,
"power_draw": 15.0,
},
time.Unix(0, 0)),
@ -135,6 +139,9 @@ func TestGatherValidJSON(t *testing.T) {
"name": "card0",
},
map[string]interface{}{
"card_model": "0x834",
"card_series": "Radeon",
"card_vendor": "Advanced",
"driver_version": 5917,
"fan_speed": 0,
"memory_total": int64(34342961152),
@ -145,11 +152,446 @@ func TestGatherValidJSON(t *testing.T) {
"temperature_sensor_memory": 35.0,
"utilization_gpu": 0,
"utilization_memory": 0,
"clocks_current_display": 357,
"clocks_current_fabric": 1080,
"clocks_current_sm": 1725,
"clocks_current_memory": 1000,
"clocks_current_system": 971,
"power_draw": 26.0,
},
time.Unix(0, 0)),
time.Unix(0, 0),
),
},
},
{
name: "mi100 + ROCm 571",
filename: "mi100_rocm571.json",
expected: []telegraf.Metric{
testutil.MustMetric(
"amd_rocm_smi",
map[string]string{
"gpu_id": "0x738c",
"gpu_unique_id": "N/A",
"name": "card0",
},
map[string]interface{}{
"card_model": "0x0c34",
"card_series": "Arcturus",
"card_vendor": "Advanced",
"driver_version": 624,
"memory_total": int64(34342961152),
"memory_used": int64(6782976),
"memory_free": int64(34336178176),
"temperature_sensor_edge": 31.0,
"temperature_sensor_junction": 34.0,
"temperature_sensor_memory": 30.0,
"utilization_gpu": 0,
"utilization_memory": 0,
"clocks_current_fabric": 1402,
"clocks_current_sm": 300,
"clocks_current_memory": 1200,
"clocks_current_system": 1000,
"power_draw": 39.0,
},
time.Unix(0, 0),
),
testutil.MustMetric(
"amd_rocm_smi",
map[string]string{
"gpu_id": "0x738c",
"gpu_unique_id": "N/A",
"name": "card1",
},
map[string]interface{}{
"card_model": "0x0c34",
"card_series": "Arcturus",
"card_vendor": "Advanced",
"driver_version": 624,
"memory_total": int64(34342961152),
"memory_used": int64(6782976),
"memory_free": int64(34336178176),
"temperature_sensor_edge": 30.0,
"temperature_sensor_junction": 33.0,
"temperature_sensor_memory": 38.0,
"utilization_gpu": 0,
"utilization_memory": 0,
"clocks_current_fabric": 1402,
"clocks_current_sm": 300,
"clocks_current_memory": 1200,
"clocks_current_system": 1000,
"power_draw": 37.0,
},
time.Unix(0, 0),
),
testutil.MustMetric(
"amd_rocm_smi",
map[string]string{
"gpu_id": "0x738c",
"gpu_unique_id": "N/A",
"name": "card2",
},
map[string]interface{}{
"card_model": "0x0c34",
"card_series": "Arcturus",
"card_vendor": "Advanced",
"driver_version": 624,
"memory_total": int64(34342961152),
"memory_used": int64(6782976),
"memory_free": int64(34336178176),
"temperature_sensor_edge": 31.0,
"temperature_sensor_junction": 34.0,
"temperature_sensor_memory": 31.0,
"utilization_gpu": 0,
"utilization_memory": 0,
"clocks_current_fabric": 1402,
"clocks_current_sm": 300,
"clocks_current_memory": 1200,
"clocks_current_system": 1000,
"power_draw": 35.0,
},
time.Unix(0, 0),
),
testutil.MustMetric(
"amd_rocm_smi",
map[string]string{
"gpu_id": "0x738c",
"gpu_unique_id": "N/A",
"name": "card3",
},
map[string]interface{}{
"card_model": "0x0c34",
"card_series": "Arcturus",
"card_vendor": "Advanced",
"driver_version": 624,
"memory_total": int64(34342961152),
"memory_used": int64(6782976),
"memory_free": int64(34336178176),
"temperature_sensor_edge": 33.0,
"temperature_sensor_junction": 35.0,
"temperature_sensor_memory": 36.0,
"utilization_gpu": 0,
"utilization_memory": 0,
"clocks_current_fabric": 1402,
"clocks_current_sm": 300,
"clocks_current_memory": 1200,
"clocks_current_system": 1000,
"power_draw": 39.0,
},
time.Unix(0, 0),
),
testutil.MustMetric(
"amd_rocm_smi",
map[string]string{
"gpu_id": "0x738c",
"gpu_unique_id": "N/A",
"name": "card4",
},
map[string]interface{}{
"card_model": "0x0c34",
"card_series": "Arcturus",
"card_vendor": "Advanced",
"driver_version": 624,
"memory_total": int64(34342961152),
"memory_used": int64(6782976),
"memory_free": int64(34336178176),
"temperature_sensor_edge": 32.0,
"temperature_sensor_junction": 34.0,
"temperature_sensor_memory": 38.0,
"utilization_gpu": 0,
"utilization_memory": 0,
"clocks_current_fabric": 1402,
"clocks_current_sm": 300,
"clocks_current_memory": 1200,
"clocks_current_system": 1000,
"power_draw": 39.0,
},
time.Unix(0, 0),
),
testutil.MustMetric(
"amd_rocm_smi",
map[string]string{
"gpu_id": "0x738c",
"gpu_unique_id": "N/A",
"name": "card5",
},
map[string]interface{}{
"card_model": "0x0c34",
"card_series": "Arcturus",
"card_vendor": "Advanced",
"driver_version": 624,
"memory_total": int64(34342961152),
"memory_used": int64(6782976),
"memory_free": int64(34336178176),
"temperature_sensor_edge": 33.0,
"temperature_sensor_junction": 35.0,
"temperature_sensor_memory": 38.0,
"utilization_gpu": 0,
"utilization_memory": 0,
"clocks_current_fabric": 1402,
"clocks_current_sm": 300,
"clocks_current_memory": 1200,
"clocks_current_system": 1000,
"power_draw": 40.0,
},
time.Unix(0, 0),
),
},
},
{
name: "mi100 + ROCm 602",
filename: "mi100_rocm602.json",
expected: []telegraf.Metric{
testutil.MustMetric(
"amd_rocm_smi",
map[string]string{
"gpu_id": "0x738c",
"gpu_unique_id": "0x79ccd55167a2124a",
"name": "card0",
},
map[string]interface{}{
"card_model": "0x0c34",
"card_series": "Arcturus",
"card_vendor": "Advanced",
"driver_version": 636,
"memory_total": int64(34342961152),
"memory_used": int64(6750208),
"memory_free": int64(34336210944),
"temperature_sensor_edge": 53.0,
"temperature_sensor_junction": 55.0,
"temperature_sensor_memory": 53.0,
"utilization_gpu": 0,
"utilization_memory": 0,
"clocks_current_fabric": 1402,
"clocks_current_sm": 300,
"clocks_current_memory": 1200,
"clocks_current_system": 1000,
"power_draw": 36.0,
},
time.Unix(0, 0),
),
testutil.MustMetric(
"amd_rocm_smi",
map[string]string{
"gpu_id": "0x738c",
"gpu_unique_id": "0x4edfb117a17a07d",
"name": "card1",
},
map[string]interface{}{
"card_model": "0x0c34",
"card_series": "Arcturus",
"card_vendor": "Advanced",
"driver_version": 636,
"memory_total": int64(34342961152),
"memory_used": int64(6750208),
"memory_free": int64(34336210944),
"temperature_sensor_edge": 55.0,
"temperature_sensor_junction": 58.0,
"temperature_sensor_memory": 54.0,
"utilization_gpu": 0,
"utilization_memory": 0,
"clocks_current_fabric": 1402,
"clocks_current_sm": 300,
"clocks_current_memory": 1200,
"clocks_current_system": 1000,
"power_draw": 44.0,
},
time.Unix(0, 0),
),
testutil.MustMetric(
"amd_rocm_smi",
map[string]string{
"gpu_id": "0x738c",
"gpu_unique_id": "0xd4a9ec48d03d261d",
"name": "card2",
},
map[string]interface{}{
"card_model": "0x0c34",
"card_series": "Arcturus",
"card_vendor": "Advanced",
"driver_version": 636,
"memory_total": int64(34342961152),
"memory_used": int64(6750208),
"memory_free": int64(34336210944),
"temperature_sensor_edge": 54.0,
"temperature_sensor_junction": 57.0,
"temperature_sensor_memory": 55.0,
"utilization_gpu": 0,
"utilization_memory": 0,
"clocks_current_fabric": 1402,
"clocks_current_sm": 300,
"clocks_current_memory": 1200,
"clocks_current_system": 1000,
"power_draw": 43.0,
},
time.Unix(0, 0),
),
testutil.MustMetric(
"amd_rocm_smi",
map[string]string{
"gpu_id": "0x738c",
"gpu_unique_id": "0x1b9dd972253c3736",
"name": "card3",
},
map[string]interface{}{
"card_model": "0x0c34",
"card_series": "Arcturus",
"card_vendor": "Advanced",
"driver_version": 636,
"memory_total": int64(34342961152),
"memory_used": int64(6750208),
"memory_free": int64(34336210944),
"temperature_sensor_edge": 51.0,
"temperature_sensor_junction": 53.0,
"temperature_sensor_memory": 50.0,
"utilization_gpu": 0,
"utilization_memory": 0,
"clocks_current_fabric": 1402,
"clocks_current_sm": 300,
"clocks_current_memory": 1200,
"clocks_current_system": 1000,
"power_draw": 39.0,
},
time.Unix(0, 0),
),
},
},
{
name: "rx6700xt + ROCm 430",
filename: "rx6700xt_rocm430.json",
expected: []telegraf.Metric{
testutil.MustMetric(
"amd_rocm_smi",
map[string]string{
"gpu_id": "0x73df",
"gpu_unique_id": "N/A",
"name": "card0",
},
map[string]interface{}{
"card_model": "0x1002",
"card_series": "0x1002",
"card_vendor": "0x1002",
"driver_version": 636,
"memory_total": int64(12868124672),
"memory_used": int64(1622728704),
"memory_free": int64(11245395968),
"temperature_sensor_edge": 45.0,
"temperature_sensor_junction": 47.0,
"temperature_sensor_memory": 46.0,
"utilization_gpu": 0,
"utilization_memory": 0,
"clocks_current_display": 480,
"clocks_current_fabric": 1051,
"clocks_current_sm": 500,
"clocks_current_memory": 96,
"clocks_current_system": 685,
"power_draw": 6.0,
},
time.Unix(0, 0),
),
},
},
{
name: "rx6700xt + ROCm 571",
filename: "rx6700xt_rocm571.json",
expected: []telegraf.Metric{
testutil.MustMetric(
"amd_rocm_smi",
map[string]string{
"gpu_id": "0x73df",
"gpu_unique_id": "N/A",
"name": "card0",
},
map[string]interface{}{
"card_model": "0x6601",
"card_series": "Navi",
"card_vendor": "Advanced",
"driver_version": 636,
"memory_total": int64(12868124672),
"memory_used": int64(1564491776),
"memory_free": int64(11303632896),
"temperature_sensor_edge": 45.0,
"temperature_sensor_junction": 47.0,
"temperature_sensor_memory": 46.0,
"utilization_gpu": 0,
"utilization_memory": 0,
"clocks_current_display": 480,
"clocks_current_fabric": 1051,
"clocks_current_sm": 500,
"clocks_current_memory": 96,
"clocks_current_system": 685,
"power_draw": 6.0,
},
time.Unix(0, 0),
),
},
},
{
name: "rx6700xt + ROCm 602",
filename: "rx6700xt_rocm602.json",
expected: []telegraf.Metric{
testutil.MustMetric(
"amd_rocm_smi",
map[string]string{
"gpu_id": "0x73df",
"gpu_unique_id": "N/A",
"name": "card0",
},
map[string]interface{}{
"card_model": "0x6601",
"card_series": "Navi",
"card_vendor": "Advanced",
"driver_version": 636,
"memory_total": int64(12868124672),
"memory_used": int64(1572757504),
"memory_free": int64(11295367168),
"temperature_sensor_edge": 45.0,
"temperature_sensor_junction": 47.0,
"temperature_sensor_memory": 46.0,
"utilization_gpu": 0,
"utilization_memory": 0,
"clocks_current_display": 480,
"clocks_current_fabric": 1051,
"clocks_current_sm": 500,
"clocks_current_memory": 96,
"clocks_current_system": 685,
},
time.Unix(0, 0),
),
},
},
{
name: "rx6700xt + ROCm 612",
filename: "rx6700xt_rocm612.json",
expected: []telegraf.Metric{
testutil.MustMetric(
"amd_rocm_smi",
map[string]string{
"gpu_id": "0x73df",
"gpu_unique_id": "N/A",
"name": "card0",
},
map[string]interface{}{
"card_model": "0x73df",
"card_series": "Navi",
"card_vendor": "Advanced",
"driver_version": 636,
"memory_total": int64(12868124672),
"memory_used": int64(1572745216),
"memory_free": int64(11295379456),
"temperature_sensor_edge": 45.0,
"temperature_sensor_junction": 47.0,
"temperature_sensor_memory": 46.0,
"utilization_gpu": 0,
"utilization_memory": 12,
"clocks_current_display": 480,
"clocks_current_fabric": 1051,
"clocks_current_sm": 0,
"clocks_current_memory": 96,
"clocks_current_system": 685,
"power_draw": 6.0,
},
time.Unix(0, 0),
),
},
},
}
@ -162,7 +604,7 @@ func TestGatherValidJSON(t *testing.T) {
err = gatherROCmSMI(octets, &acc)
require.NoError(t, err)
testutil.RequireMetricsEqual(t, tt.expected, acc.GetTelegrafMetrics(), testutil.IgnoreTime())
testutil.RequireMetricsEqual(t, tt.expected, acc.GetTelegrafMetrics(), testutil.IgnoreTime(), testutil.SortMetrics())
})
}
}

View File

@ -0,0 +1,532 @@
{
"card0": {
"GPU ID": "0x738c",
"Unique ID": "N/A",
"VBIOS version": "113-D3430400-037",
"Temperature (Sensor edge) (C)": "31.0",
"Temperature (Sensor junction) (C)": "34.0",
"Temperature (Sensor memory) (C)": "30.0",
"fclk clock speed:": "(1402Mhz)",
"fclk clock level:": "0",
"mclk clock speed:": "(1200Mhz)",
"mclk clock level:": "0",
"sclk clock speed:": "(300Mhz)",
"sclk clock level:": "0",
"socclk clock speed:": "(1000Mhz)",
"socclk clock level:": "0",
"pcie clock level": "0 (8.0GT/s x16)",
"sclk clock level": "0 (300Mhz)",
"Performance Level": "auto",
"GPU OverDrive value (%)": "0",
"GPU Memory OverDrive value (%)": "0",
"Max Graphics Package Power (W)": "290.0",
"Average Graphics Package Power (W)": "39.0",
"0": "8.0GT/s x16 *",
"1": "495Mhz",
"2": "731Mhz",
"3": "962Mhz",
"4": "1029Mhz",
"5": "1087Mhz",
"6": "1147Mhz",
"7": "1189Mhz",
"8": "1235Mhz",
"9": "1283Mhz",
"10": "1319Mhz",
"11": "1363Mhz",
"12": "1404Mhz",
"13": "1430Mhz",
"14": "1472Mhz",
"15": "1502Mhz",
"GPU use (%)": "0",
"GPU memory use (%)": "0",
"Memory Activity": "N/A",
"GPU memory vendor": "samsung",
"PCIe Replay Count": "0",
"Serial Number": "0",
"Voltage (mV)": "662",
"PCI Bus": "0000:1E:00.0",
"VRAM Total Memory (B)": "34342961152",
"VRAM Total Used Memory (B)": "6782976",
"VIS_VRAM Total Memory (B)": "34342961152",
"VIS_VRAM Total Used Memory (B)": "6782976",
"GTT Total Memory (B)": "135048462336",
"GTT Total Used Memory (B)": "11399168",
"ASD firmware version": "0x21000059",
"CE firmware version": "0",
"DMCU firmware version": "0",
"MC firmware version": "0",
"ME firmware version": "0",
"MEC firmware version": "65",
"MEC2 firmware version": "65",
"PFP firmware version": "0",
"RLC firmware version": "24",
"RLC SRLC firmware version": "0",
"RLC SRLG firmware version": "0",
"RLC SRLS firmware version": "0",
"SDMA firmware version": "18",
"SDMA2 firmware version": "18",
"SMC firmware version": "00.54.29.00",
"SOS firmware version": "0x0017004f",
"TA RAS firmware version": "27.00.01.62",
"TA XGMI firmware version": "32.00.00.15",
"UVD firmware version": "0x00000000",
"VCE firmware version": "0x00000000",
"VCN firmware version": "0x01101015",
"Card series": "Arcturus GL-XL [Instinct MI100]",
"Card model": "0x0c34",
"Card vendor": "Advanced Micro Devices, Inc. [AMD/ATI]",
"Card SKU": "D3430400",
"(Topology) Numa Node": "0",
"(Topology) Numa Affinity": "0"
},
"card1": {
"GPU ID": "0x738c",
"Unique ID": "N/A",
"VBIOS version": "113-D3430400-037",
"Temperature (Sensor edge) (C)": "30.0",
"Temperature (Sensor junction) (C)": "33.0",
"Temperature (Sensor memory) (C)": "38.0",
"fclk clock speed:": "(1402Mhz)",
"fclk clock level:": "0",
"mclk clock speed:": "(1200Mhz)",
"mclk clock level:": "0",
"sclk clock speed:": "(300Mhz)",
"sclk clock level:": "0",
"socclk clock speed:": "(1000Mhz)",
"socclk clock level:": "0",
"pcie clock level": "0 (8.0GT/s x16)",
"sclk clock level": "0 (300Mhz)",
"Performance Level": "auto",
"GPU OverDrive value (%)": "0",
"GPU Memory OverDrive value (%)": "0",
"Max Graphics Package Power (W)": "290.0",
"Average Graphics Package Power (W)": "37.0",
"0": "8.0GT/s x16 *",
"1": "495Mhz",
"2": "731Mhz",
"3": "962Mhz",
"4": "1029Mhz",
"5": "1087Mhz",
"6": "1147Mhz",
"7": "1189Mhz",
"8": "1235Mhz",
"9": "1283Mhz",
"10": "1319Mhz",
"11": "1363Mhz",
"12": "1404Mhz",
"13": "1430Mhz",
"14": "1472Mhz",
"15": "1502Mhz",
"GPU use (%)": "0",
"GPU memory use (%)": "0",
"Memory Activity": "N/A",
"GPU memory vendor": "hynix",
"PCIe Replay Count": "0",
"Serial Number": "0",
"Voltage (mV)": "662",
"PCI Bus": "0000:22:00.0",
"VRAM Total Memory (B)": "34342961152",
"VRAM Total Used Memory (B)": "6782976",
"VIS_VRAM Total Memory (B)": "34342961152",
"VIS_VRAM Total Used Memory (B)": "6782976",
"GTT Total Memory (B)": "135048462336",
"GTT Total Used Memory (B)": "11366400",
"ASD firmware version": "0x21000059",
"CE firmware version": "0",
"DMCU firmware version": "0",
"MC firmware version": "0",
"ME firmware version": "0",
"MEC firmware version": "65",
"MEC2 firmware version": "65",
"PFP firmware version": "0",
"RLC firmware version": "24",
"RLC SRLC firmware version": "0",
"RLC SRLG firmware version": "0",
"RLC SRLS firmware version": "0",
"SDMA firmware version": "18",
"SDMA2 firmware version": "18",
"SMC firmware version": "00.54.29.00",
"SOS firmware version": "0x0017004f",
"TA RAS firmware version": "27.00.01.62",
"TA XGMI firmware version": "32.00.00.15",
"UVD firmware version": "0x00000000",
"VCE firmware version": "0x00000000",
"VCN firmware version": "0x01101015",
"Card series": "Arcturus GL-XL [Instinct MI100]",
"Card model": "0x0c34",
"Card vendor": "Advanced Micro Devices, Inc. [AMD/ATI]",
"Card SKU": "D3430400",
"(Topology) Numa Node": "0",
"(Topology) Numa Affinity": "0"
},
"card2": {
"GPU ID": "0x738c",
"Unique ID": "N/A",
"VBIOS version": "113-D3430400-037",
"Temperature (Sensor edge) (C)": "31.0",
"Temperature (Sensor junction) (C)": "34.0",
"Temperature (Sensor memory) (C)": "31.0",
"fclk clock speed:": "(1402Mhz)",
"fclk clock level:": "0",
"mclk clock speed:": "(1200Mhz)",
"mclk clock level:": "0",
"sclk clock speed:": "(300Mhz)",
"sclk clock level:": "0",
"socclk clock speed:": "(1000Mhz)",
"socclk clock level:": "0",
"pcie clock level": "0 (8.0GT/s x16)",
"sclk clock level": "0 (300Mhz)",
"Performance Level": "auto",
"GPU OverDrive value (%)": "0",
"GPU Memory OverDrive value (%)": "0",
"Max Graphics Package Power (W)": "290.0",
"Average Graphics Package Power (W)": "35.0",
"0": "8.0GT/s x16 *",
"1": "495Mhz",
"2": "731Mhz",
"3": "962Mhz",
"4": "1029Mhz",
"5": "1087Mhz",
"6": "1147Mhz",
"7": "1189Mhz",
"8": "1235Mhz",
"9": "1283Mhz",
"10": "1319Mhz",
"11": "1363Mhz",
"12": "1404Mhz",
"13": "1430Mhz",
"14": "1472Mhz",
"15": "1502Mhz",
"GPU use (%)": "0",
"GPU memory use (%)": "0",
"Memory Activity": "N/A",
"GPU memory vendor": "samsung",
"PCIe Replay Count": "0",
"Serial Number": "0",
"Voltage (mV)": "656",
"PCI Bus": "0000:3F:00.0",
"VRAM Total Memory (B)": "34342961152",
"VRAM Total Used Memory (B)": "6782976",
"VIS_VRAM Total Memory (B)": "34342961152",
"VIS_VRAM Total Used Memory (B)": "6782976",
"GTT Total Memory (B)": "135048462336",
"GTT Total Used Memory (B)": "11366400",
"ASD firmware version": "0x21000059",
"CE firmware version": "0",
"DMCU firmware version": "0",
"MC firmware version": "0",
"ME firmware version": "0",
"MEC firmware version": "65",
"MEC2 firmware version": "65",
"PFP firmware version": "0",
"RLC firmware version": "24",
"RLC SRLC firmware version": "0",
"RLC SRLG firmware version": "0",
"RLC SRLS firmware version": "0",
"SDMA firmware version": "18",
"SDMA2 firmware version": "18",
"SMC firmware version": "00.54.29.00",
"SOS firmware version": "0x0017004f",
"TA RAS firmware version": "27.00.01.62",
"TA XGMI firmware version": "32.00.00.15",
"UVD firmware version": "0x00000000",
"VCE firmware version": "0x00000000",
"VCN firmware version": "0x01101015",
"Card series": "Arcturus GL-XL [Instinct MI100]",
"Card model": "0x0c34",
"Card vendor": "Advanced Micro Devices, Inc. [AMD/ATI]",
"Card SKU": "D3430400",
"(Topology) Numa Node": "0",
"(Topology) Numa Affinity": "0"
},
"card3": {
"GPU ID": "0x738c",
"Unique ID": "N/A",
"VBIOS version": "113-D3430400-037",
"Temperature (Sensor edge) (C)": "33.0",
"Temperature (Sensor junction) (C)": "35.0",
"Temperature (Sensor memory) (C)": "36.0",
"fclk clock speed:": "(1402Mhz)",
"fclk clock level:": "0",
"mclk clock speed:": "(1200Mhz)",
"mclk clock level:": "0",
"sclk clock speed:": "(300Mhz)",
"sclk clock level:": "0",
"socclk clock speed:": "(1000Mhz)",
"socclk clock level:": "0",
"pcie clock level": "0 (8.0GT/s x16)",
"sclk clock level": "0 (300Mhz)",
"Performance Level": "auto",
"GPU OverDrive value (%)": "0",
"GPU Memory OverDrive value (%)": "0",
"Max Graphics Package Power (W)": "290.0",
"Average Graphics Package Power (W)": "39.0",
"0": "8.0GT/s x16 *",
"1": "495Mhz",
"2": "731Mhz",
"3": "962Mhz",
"4": "1029Mhz",
"5": "1087Mhz",
"6": "1147Mhz",
"7": "1189Mhz",
"8": "1235Mhz",
"9": "1283Mhz",
"10": "1319Mhz",
"11": "1363Mhz",
"12": "1404Mhz",
"13": "1430Mhz",
"14": "1472Mhz",
"15": "1502Mhz",
"GPU use (%)": "0",
"GPU memory use (%)": "0",
"Memory Activity": "N/A",
"GPU memory vendor": "hynix",
"PCIe Replay Count": "0",
"Serial Number": "0",
"Voltage (mV)": "656",
"PCI Bus": "0000:43:00.0",
"VRAM Total Memory (B)": "34342961152",
"VRAM Total Used Memory (B)": "6782976",
"VIS_VRAM Total Memory (B)": "34342961152",
"VIS_VRAM Total Used Memory (B)": "6782976",
"GTT Total Memory (B)": "135048462336",
"GTT Total Used Memory (B)": "11366400",
"ASD firmware version": "0x21000059",
"CE firmware version": "0",
"DMCU firmware version": "0",
"MC firmware version": "0",
"ME firmware version": "0",
"MEC firmware version": "65",
"MEC2 firmware version": "65",
"PFP firmware version": "0",
"RLC firmware version": "24",
"RLC SRLC firmware version": "0",
"RLC SRLG firmware version": "0",
"RLC SRLS firmware version": "0",
"SDMA firmware version": "18",
"SDMA2 firmware version": "18",
"SMC firmware version": "00.54.29.00",
"SOS firmware version": "0x0017004f",
"TA RAS firmware version": "27.00.01.62",
"TA XGMI firmware version": "32.00.00.15",
"UVD firmware version": "0x00000000",
"VCE firmware version": "0x00000000",
"VCN firmware version": "0x01101015",
"Card series": "Arcturus GL-XL [Instinct MI100]",
"Card model": "0x0c34",
"Card vendor": "Advanced Micro Devices, Inc. [AMD/ATI]",
"Card SKU": "D3430400",
"(Topology) Numa Node": "0",
"(Topology) Numa Affinity": "0"
},
"card4": {
"GPU ID": "0x738c",
"Unique ID": "N/A",
"VBIOS version": "113-D3430400-037",
"Temperature (Sensor edge) (C)": "32.0",
"Temperature (Sensor junction) (C)": "34.0",
"Temperature (Sensor memory) (C)": "38.0",
"fclk clock speed:": "(1402Mhz)",
"fclk clock level:": "0",
"mclk clock speed:": "(1200Mhz)",
"mclk clock level:": "0",
"sclk clock speed:": "(300Mhz)",
"sclk clock level:": "0",
"socclk clock speed:": "(1000Mhz)",
"socclk clock level:": "0",
"pcie clock level": "0 (8.0GT/s x16)",
"sclk clock level": "0 (300Mhz)",
"Performance Level": "auto",
"GPU OverDrive value (%)": "0",
"GPU Memory OverDrive value (%)": "0",
"Max Graphics Package Power (W)": "290.0",
"Average Graphics Package Power (W)": "39.0",
"0": "8.0GT/s x16 *",
"1": "495Mhz",
"2": "731Mhz",
"3": "962Mhz",
"4": "1029Mhz",
"5": "1087Mhz",
"6": "1147Mhz",
"7": "1189Mhz",
"8": "1235Mhz",
"9": "1283Mhz",
"10": "1319Mhz",
"11": "1363Mhz",
"12": "1404Mhz",
"13": "1430Mhz",
"14": "1472Mhz",
"15": "1502Mhz",
"GPU use (%)": "0",
"GPU memory use (%)": "0",
"Memory Activity": "N/A",
"GPU memory vendor": "hynix",
"PCIe Replay Count": "0",
"Serial Number": "0",
"Voltage (mV)": "656",
"PCI Bus": "0000:46:00.0",
"VRAM Total Memory (B)": "34342961152",
"VRAM Total Used Memory (B)": "6782976",
"VIS_VRAM Total Memory (B)": "34342961152",
"VIS_VRAM Total Used Memory (B)": "6782976",
"GTT Total Memory (B)": "135048462336",
"GTT Total Used Memory (B)": "11366400",
"ASD firmware version": "0x21000059",
"CE firmware version": "0",
"DMCU firmware version": "0",
"MC firmware version": "0",
"ME firmware version": "0",
"MEC firmware version": "65",
"MEC2 firmware version": "65",
"PFP firmware version": "0",
"RLC firmware version": "24",
"RLC SRLC firmware version": "0",
"RLC SRLG firmware version": "0",
"RLC SRLS firmware version": "0",
"SDMA firmware version": "18",
"SDMA2 firmware version": "18",
"SMC firmware version": "00.54.29.00",
"SOS firmware version": "0x0017004f",
"TA RAS firmware version": "27.00.01.62",
"TA XGMI firmware version": "32.00.00.15",
"UVD firmware version": "0x00000000",
"VCE firmware version": "0x00000000",
"VCN firmware version": "0x01101015",
"Card series": "Arcturus GL-XL [Instinct MI100]",
"Card model": "0x0c34",
"Card vendor": "Advanced Micro Devices, Inc. [AMD/ATI]",
"Card SKU": "D3430400",
"(Topology) Numa Node": "0",
"(Topology) Numa Affinity": "0"
},
"card5": {
"GPU ID": "0x738c",
"Unique ID": "N/A",
"VBIOS version": "113-D3430400-037",
"Temperature (Sensor edge) (C)": "33.0",
"Temperature (Sensor junction) (C)": "35.0",
"Temperature (Sensor memory) (C)": "38.0",
"fclk clock speed:": "(1402Mhz)",
"fclk clock level:": "0",
"mclk clock speed:": "(1200Mhz)",
"mclk clock level:": "0",
"sclk clock speed:": "(300Mhz)",
"sclk clock level:": "0",
"socclk clock speed:": "(1000Mhz)",
"socclk clock level:": "0",
"pcie clock level": "0 (8.0GT/s x16)",
"sclk clock level": "0 (300Mhz)",
"Performance Level": "auto",
"GPU OverDrive value (%)": "0",
"GPU Memory OverDrive value (%)": "0",
"Max Graphics Package Power (W)": "290.0",
"Average Graphics Package Power (W)": "40.0",
"0": "8.0GT/s x16 *",
"1": "495Mhz",
"2": "731Mhz",
"3": "962Mhz",
"4": "1029Mhz",
"5": "1087Mhz",
"6": "1147Mhz",
"7": "1189Mhz",
"8": "1235Mhz",
"9": "1283Mhz",
"10": "1319Mhz",
"11": "1363Mhz",
"12": "1404Mhz",
"13": "1430Mhz",
"14": "1472Mhz",
"15": "1502Mhz",
"GPU use (%)": "0",
"GPU memory use (%)": "0",
"Memory Activity": "N/A",
"GPU memory vendor": "hynix",
"PCIe Replay Count": "0",
"Serial Number": "0",
"Voltage (mV)": "662",
"PCI Bus": "0000:49:00.0",
"VRAM Total Memory (B)": "34342961152",
"VRAM Total Used Memory (B)": "6782976",
"VIS_VRAM Total Memory (B)": "34342961152",
"VIS_VRAM Total Used Memory (B)": "6782976",
"GTT Total Memory (B)": "135048462336",
"GTT Total Used Memory (B)": "11366400",
"ASD firmware version": "0x21000059",
"CE firmware version": "0",
"DMCU firmware version": "0",
"MC firmware version": "0",
"ME firmware version": "0",
"MEC firmware version": "65",
"MEC2 firmware version": "65",
"PFP firmware version": "0",
"RLC firmware version": "24",
"RLC SRLC firmware version": "0",
"RLC SRLG firmware version": "0",
"RLC SRLS firmware version": "0",
"SDMA firmware version": "18",
"SDMA2 firmware version": "18",
"SMC firmware version": "00.54.29.00",
"SOS firmware version": "0x0017004f",
"TA RAS firmware version": "27.00.01.62",
"TA XGMI firmware version": "32.00.00.15",
"UVD firmware version": "0x00000000",
"VCE firmware version": "0x00000000",
"VCN firmware version": "0x01101015",
"Card series": "Arcturus GL-XL [Instinct MI100]",
"Card model": "0x0c34",
"Card vendor": "Advanced Micro Devices, Inc. [AMD/ATI]",
"Card SKU": "D3430400",
"(Topology) Numa Node": "0",
"(Topology) Numa Affinity": "0"
},
"system": {
"Driver version": "6.2.4",
"PID104225": "mlir-cpu-runner, 0, 0, 0, 0",
"(Topology) Weight between DRM devices 0 and 1": "40",
"(Topology) Weight between DRM devices 0 and 2": "40",
"(Topology) Weight between DRM devices 0 and 3": "40",
"(Topology) Weight between DRM devices 0 and 4": "40",
"(Topology) Weight between DRM devices 0 and 5": "40",
"(Topology) Weight between DRM devices 1 and 2": "40",
"(Topology) Weight between DRM devices 1 and 3": "40",
"(Topology) Weight between DRM devices 1 and 4": "40",
"(Topology) Weight between DRM devices 1 and 5": "40",
"(Topology) Weight between DRM devices 2 and 3": "40",
"(Topology) Weight between DRM devices 2 and 4": "40",
"(Topology) Weight between DRM devices 2 and 5": "40",
"(Topology) Weight between DRM devices 3 and 4": "40",
"(Topology) Weight between DRM devices 3 and 5": "40",
"(Topology) Weight between DRM devices 4 and 5": "40",
"(Topology) Hops between DRM devices 0 and 1": "2",
"(Topology) Hops between DRM devices 0 and 2": "2",
"(Topology) Hops between DRM devices 0 and 3": "2",
"(Topology) Hops between DRM devices 0 and 4": "2",
"(Topology) Hops between DRM devices 0 and 5": "2",
"(Topology) Hops between DRM devices 1 and 2": "2",
"(Topology) Hops between DRM devices 1 and 3": "2",
"(Topology) Hops between DRM devices 1 and 4": "2",
"(Topology) Hops between DRM devices 1 and 5": "2",
"(Topology) Hops between DRM devices 2 and 3": "2",
"(Topology) Hops between DRM devices 2 and 4": "2",
"(Topology) Hops between DRM devices 2 and 5": "2",
"(Topology) Hops between DRM devices 3 and 4": "2",
"(Topology) Hops between DRM devices 3 and 5": "2",
"(Topology) Hops between DRM devices 4 and 5": "2",
"(Topology) Link type between DRM devices 0 and 1": "PCIE",
"(Topology) Link type between DRM devices 0 and 2": "PCIE",
"(Topology) Link type between DRM devices 0 and 3": "PCIE",
"(Topology) Link type between DRM devices 0 and 4": "PCIE",
"(Topology) Link type between DRM devices 0 and 5": "PCIE",
"(Topology) Link type between DRM devices 1 and 2": "PCIE",
"(Topology) Link type between DRM devices 1 and 3": "PCIE",
"(Topology) Link type between DRM devices 1 and 4": "PCIE",
"(Topology) Link type between DRM devices 1 and 5": "PCIE",
"(Topology) Link type between DRM devices 2 and 3": "PCIE",
"(Topology) Link type between DRM devices 2 and 4": "PCIE",
"(Topology) Link type between DRM devices 2 and 5": "PCIE",
"(Topology) Link type between DRM devices 3 and 4": "PCIE",
"(Topology) Link type between DRM devices 3 and 5": "PCIE",
"(Topology) Link type between DRM devices 4 and 5": "PCIE"
}
}

View File

@ -0,0 +1,311 @@
{
"card0": {
"Device ID": "0x738c",
"Device Rev": "0x1",
"Unique ID": "0x79ccd55167a2124a",
"VBIOS version": "113-D3431401-101",
"Temperature (Sensor edge) (C)": "53.0",
"Temperature (Sensor junction) (C)": "55.0",
"Temperature (Sensor memory) (C)": "53.0",
"fclk clock speed:": "(1402Mhz)",
"fclk clock level:": "0",
"mclk clock speed:": "(1200Mhz)",
"mclk clock level:": "0",
"sclk clock speed:": "(300Mhz)",
"sclk clock level:": "0",
"socclk clock speed:": "(1000Mhz)",
"socclk clock level:": "0",
"pcie clock level": "0 (16.0GT/s x16)",
"sclk clock level": "0 (300Mhz)",
"Performance Level": "auto",
"GPU OverDrive value (%)": "0",
"GPU Memory OverDrive value (%)": "0",
"Max Graphics Package Power (W)": "290.0",
"Average Graphics Package Power (W)": "36.0",
"0": "16.0GT/s x16 *",
"1": "495Mhz",
"2": "731Mhz",
"3": "962Mhz",
"4": "1029Mhz",
"5": "1087Mhz",
"6": "1147Mhz",
"7": "1189Mhz",
"8": "1235Mhz",
"9": "1283Mhz",
"10": "1319Mhz",
"11": "1363Mhz",
"12": "1404Mhz",
"13": "1430Mhz",
"14": "1472Mhz",
"15": "1502Mhz",
"GPU use (%)": "0",
"GPU memory use (%)": "0",
"Memory Activity": "N/A",
"Avg. Memory Bandwidth": "0",
"GPU memory vendor": "samsung",
"PCIe Replay Count": "0",
"Serial Number": "N/A",
"Voltage (mV)": "662",
"PCI Bus": "0000:83:00.0",
"VRAM Total Memory (B)": "34342961152",
"VRAM Total Used Memory (B)": "6750208",
"VIS_VRAM Total Memory (B)": "34342961152",
"VIS_VRAM Total Used Memory (B)": "6750208",
"GTT Total Memory (B)": "135138402304",
"GTT Total Used Memory (B)": "11354112",
"ASD firmware version": "0x21000059",
"MEC firmware version": "65",
"MEC2 firmware version": "65",
"RLC firmware version": "24",
"SDMA firmware version": "18",
"SDMA2 firmware version": "18",
"SMC firmware version": "00.54.29.00",
"SOS firmware version": "0x0017004f",
"TA RAS firmware version": "27.00.01.62",
"TA XGMI firmware version": "32.00.00.17",
"VCN firmware version": "0x01101015",
"Card series": "Arcturus GL-XL [Instinct MI100]",
"Card model": "0x0c34",
"Card vendor": "Advanced Micro Devices, Inc. [AMD/ATI]",
"Card SKU": "D3431401",
"(Topology) Numa Node": "1",
"(Topology) Numa Affinity": "1"
},
"card1": {
"Device ID": "0x738c",
"Device Rev": "0x1",
"Unique ID": "0x4edfb117a17a07d",
"VBIOS version": "113-D3431401-101",
"Temperature (Sensor edge) (C)": "55.0",
"Temperature (Sensor junction) (C)": "58.0",
"Temperature (Sensor memory) (C)": "54.0",
"fclk clock speed:": "(1402Mhz)",
"fclk clock level:": "0",
"mclk clock speed:": "(1200Mhz)",
"mclk clock level:": "0",
"sclk clock speed:": "(300Mhz)",
"sclk clock level:": "0",
"socclk clock speed:": "(1000Mhz)",
"socclk clock level:": "0",
"pcie clock level": "0 (16.0GT/s x16)",
"sclk clock level": "0 (300Mhz)",
"Performance Level": "auto",
"GPU OverDrive value (%)": "0",
"GPU Memory OverDrive value (%)": "0",
"Max Graphics Package Power (W)": "290.0",
"Average Graphics Package Power (W)": "44.0",
"0": "16.0GT/s x16 *",
"1": "495Mhz",
"2": "731Mhz",
"3": "962Mhz",
"4": "1029Mhz",
"5": "1087Mhz",
"6": "1147Mhz",
"7": "1189Mhz",
"8": "1235Mhz",
"9": "1283Mhz",
"10": "1319Mhz",
"11": "1363Mhz",
"12": "1404Mhz",
"13": "1430Mhz",
"14": "1472Mhz",
"15": "1502Mhz",
"GPU use (%)": "0",
"GPU memory use (%)": "0",
"Memory Activity": "N/A",
"Avg. Memory Bandwidth": "0",
"GPU memory vendor": "samsung",
"PCIe Replay Count": "0",
"Serial Number": "N/A",
"Voltage (mV)": "668",
"PCI Bus": "0000:A3:00.0",
"VRAM Total Memory (B)": "34342961152",
"VRAM Total Used Memory (B)": "6750208",
"VIS_VRAM Total Memory (B)": "34342961152",
"VIS_VRAM Total Used Memory (B)": "6750208",
"GTT Total Memory (B)": "135138402304",
"GTT Total Used Memory (B)": "11354112",
"ASD firmware version": "0x21000059",
"MEC firmware version": "65",
"MEC2 firmware version": "65",
"RLC firmware version": "24",
"SDMA firmware version": "18",
"SDMA2 firmware version": "18",
"SMC firmware version": "00.54.29.00",
"SOS firmware version": "0x0017004f",
"TA RAS firmware version": "27.00.01.62",
"TA XGMI firmware version": "32.00.00.17",
"VCN firmware version": "0x01101015",
"Card series": "Arcturus GL-XL [Instinct MI100]",
"Card model": "0x0c34",
"Card vendor": "Advanced Micro Devices, Inc. [AMD/ATI]",
"Card SKU": "D3431401",
"(Topology) Numa Node": "1",
"(Topology) Numa Affinity": "1"
},
"card2": {
"Device ID": "0x738c",
"Device Rev": "0x1",
"Unique ID": "0xd4a9ec48d03d261d",
"VBIOS version": "113-D3431401-101",
"Temperature (Sensor edge) (C)": "54.0",
"Temperature (Sensor junction) (C)": "57.0",
"Temperature (Sensor memory) (C)": "55.0",
"fclk clock speed:": "(1402Mhz)",
"fclk clock level:": "0",
"mclk clock speed:": "(1200Mhz)",
"mclk clock level:": "0",
"sclk clock speed:": "(300Mhz)",
"sclk clock level:": "0",
"socclk clock speed:": "(1000Mhz)",
"socclk clock level:": "0",
"pcie clock level": "0 (16.0GT/s x16)",
"sclk clock level": "0 (300Mhz)",
"Performance Level": "auto",
"GPU OverDrive value (%)": "0",
"GPU Memory OverDrive value (%)": "0",
"Max Graphics Package Power (W)": "290.0",
"Average Graphics Package Power (W)": "43.0",
"0": "16.0GT/s x16 *",
"1": "495Mhz",
"2": "731Mhz",
"3": "962Mhz",
"4": "1029Mhz",
"5": "1087Mhz",
"6": "1147Mhz",
"7": "1189Mhz",
"8": "1235Mhz",
"9": "1283Mhz",
"10": "1319Mhz",
"11": "1363Mhz",
"12": "1404Mhz",
"13": "1430Mhz",
"14": "1472Mhz",
"15": "1502Mhz",
"GPU use (%)": "0",
"GPU memory use (%)": "0",
"Memory Activity": "N/A",
"Avg. Memory Bandwidth": "0",
"GPU memory vendor": "samsung",
"PCIe Replay Count": "0",
"Serial Number": "N/A",
"Voltage (mV)": "668",
"PCI Bus": "0000:C3:00.0",
"VRAM Total Memory (B)": "34342961152",
"VRAM Total Used Memory (B)": "6750208",
"VIS_VRAM Total Memory (B)": "34342961152",
"VIS_VRAM Total Used Memory (B)": "6750208",
"GTT Total Memory (B)": "135138402304",
"GTT Total Used Memory (B)": "11354112",
"ASD firmware version": "0x21000059",
"MEC firmware version": "65",
"MEC2 firmware version": "65",
"RLC firmware version": "24",
"SDMA firmware version": "18",
"SDMA2 firmware version": "18",
"SMC firmware version": "00.54.29.00",
"SOS firmware version": "0x0017004f",
"TA RAS firmware version": "27.00.01.62",
"TA XGMI firmware version": "32.00.00.17",
"VCN firmware version": "0x01101015",
"Card series": "Arcturus GL-XL [Instinct MI100]",
"Card model": "0x0c34",
"Card vendor": "Advanced Micro Devices, Inc. [AMD/ATI]",
"Card SKU": "D3431401",
"(Topology) Numa Node": "1",
"(Topology) Numa Affinity": "1"
},
"card3": {
"Device ID": "0x738c",
"Device Rev": "0x1",
"Unique ID": "0x1b9dd972253c3736",
"VBIOS version": "113-D3431401-101",
"Temperature (Sensor edge) (C)": "51.0",
"Temperature (Sensor junction) (C)": "53.0",
"Temperature (Sensor memory) (C)": "50.0",
"fclk clock speed:": "(1402Mhz)",
"fclk clock level:": "0",
"mclk clock speed:": "(1200Mhz)",
"mclk clock level:": "0",
"sclk clock speed:": "(300Mhz)",
"sclk clock level:": "0",
"socclk clock speed:": "(1000Mhz)",
"socclk clock level:": "0",
"pcie clock level": "0 (16.0GT/s x16)",
"sclk clock level": "0 (300Mhz)",
"Performance Level": "auto",
"GPU OverDrive value (%)": "0",
"GPU Memory OverDrive value (%)": "0",
"Max Graphics Package Power (W)": "290.0",
"Average Graphics Package Power (W)": "39.0",
"0": "16.0GT/s x16 *",
"1": "495Mhz",
"2": "731Mhz",
"3": "962Mhz",
"4": "1029Mhz",
"5": "1087Mhz",
"6": "1147Mhz",
"7": "1189Mhz",
"8": "1235Mhz",
"9": "1283Mhz",
"10": "1319Mhz",
"11": "1363Mhz",
"12": "1404Mhz",
"13": "1430Mhz",
"14": "1472Mhz",
"15": "1502Mhz",
"GPU use (%)": "0",
"GPU memory use (%)": "0",
"Memory Activity": "N/A",
"Avg. Memory Bandwidth": "0",
"GPU memory vendor": "samsung",
"PCIe Replay Count": "0",
"Serial Number": "N/A",
"Voltage (mV)": "662",
"PCI Bus": "0000:E3:00.0",
"VRAM Total Memory (B)": "34342961152",
"VRAM Total Used Memory (B)": "6750208",
"VIS_VRAM Total Memory (B)": "34342961152",
"VIS_VRAM Total Used Memory (B)": "6750208",
"GTT Total Memory (B)": "135138402304",
"GTT Total Used Memory (B)": "11354112",
"ASD firmware version": "0x21000059",
"MEC firmware version": "65",
"MEC2 firmware version": "65",
"RLC firmware version": "24",
"SDMA firmware version": "18",
"SDMA2 firmware version": "18",
"SMC firmware version": "00.54.29.00",
"SOS firmware version": "0x0017004f",
"TA RAS firmware version": "27.00.01.62",
"TA XGMI firmware version": "32.00.00.17",
"VCN firmware version": "0x01101015",
"Card series": "Arcturus GL-XL [Instinct MI100]",
"Card model": "0x0c34",
"Card vendor": "Advanced Micro Devices, Inc. [AMD/ATI]",
"Card SKU": "D3431401",
"(Topology) Numa Node": "1",
"(Topology) Numa Affinity": "1"
},
"system": {
"Driver version": "6.3.6",
"(Topology) Weight between DRM devices 0 and 1": "40",
"(Topology) Weight between DRM devices 0 and 2": "40",
"(Topology) Weight between DRM devices 0 and 3": "40",
"(Topology) Weight between DRM devices 1 and 2": "40",
"(Topology) Weight between DRM devices 1 and 3": "40",
"(Topology) Weight between DRM devices 2 and 3": "40",
"(Topology) Hops between DRM devices 0 and 1": "2",
"(Topology) Hops between DRM devices 0 and 2": "2",
"(Topology) Hops between DRM devices 0 and 3": "2",
"(Topology) Hops between DRM devices 1 and 2": "2",
"(Topology) Hops between DRM devices 1 and 3": "2",
"(Topology) Hops between DRM devices 2 and 3": "2",
"(Topology) Link type between DRM devices 0 and 1": "PCIE",
"(Topology) Link type between DRM devices 0 and 2": "PCIE",
"(Topology) Link type between DRM devices 0 and 3": "PCIE",
"(Topology) Link type between DRM devices 1 and 2": "PCIE",
"(Topology) Link type between DRM devices 1 and 3": "PCIE",
"(Topology) Link type between DRM devices 2 and 3": "PCIE"
}
}

View File

@ -0,0 +1,69 @@
{
"card0": {
"GPU ID": "0x73df",
"Unique ID": "N/A",
"VBIOS version": "113-67XA6SSB1-D01",
"Temperature (Sensor edge) (C)": "45.0",
"Temperature (Sensor junction) (C)": "47.0",
"Temperature (Sensor memory) (C)": "46.0",
"Temperature (Sensor HBM 0) (C)": "N/A",
"Temperature (Sensor HBM 1) (C)": "N/A",
"Temperature (Sensor HBM 2) (C)": "N/A",
"Temperature (Sensor HBM 3) (C)": "N/A",
"dcefclk clock speed:": "(480Mhz)",
"dcefclk clock level:": "1",
"fclk clock speed:": "(1051Mhz)",
"fclk clock level:": "1",
"mclk clock speed:": "(96Mhz)",
"mclk clock level:": "0",
"sclk clock speed:": "(500Mhz)",
"sclk clock level:": "0",
"socclk clock speed:": "(685Mhz)",
"socclk clock level:": "1",
"pcie clock level": "1 (16.0GT/s x16)",
"sclk clock level": "0 (500Mhz)",
"Performance Level": "auto",
"GPU OverDrive value (%)": "0",
"GPU Memory OverDrive value (%)": "0",
"Max Graphics Package Power (W)": "211.0",
"Average Graphics Package Power (W)": "6.0",
"0": "2.5GT/s x1",
"1": "16.0GT/s x16 *",
"2": "1200Mhz",
"3": "1000Mhz",
"GPU use (%)": "0",
"GPU memory use (%)": "0",
"GPU memory vendor": "samsung",
"PCIe Replay Count": "0",
"Serial Number": "N/A",
"Voltage (mV)": "6",
"PCI Bus": "0000:07:00.0",
"VRAM Total Memory (B)": "12868124672",
"VRAM Total Used Memory (B)": "1622728704",
"VIS_VRAM Total Memory (B)": "268435456",
"VIS_VRAM Total Used Memory (B)": "70930432",
"GTT Total Memory (B)": "16792432640",
"GTT Total Used Memory (B)": "244150272",
"ASD firmware version": "553648315",
"CE firmware version": "37",
"ME firmware version": "64",
"MEC firmware version": "116",
"MEC2 firmware version": "116",
"PFP firmware version": "97",
"RLC firmware version": "74",
"SDMA firmware version": "80",
"SDMA2 firmware version": "80",
"SMC firmware version": "00.65.60.00",
"SOS firmware version": "0x00220b0c",
"VCN firmware version": "0x0211e006",
"Card series": "0x1002",
"Card model": "0x1002",
"Card vendor": "0x1002",
"Card SKU": "67XA6S",
"(Topology) Numa Node": "0",
"(Topology) Numa Affinity": "4294967295"
},
"system": {
"Driver version": "6.3.6"
}
}

View File

@ -0,0 +1,66 @@
{
"card0": {
"GPU ID": "0x73df",
"Unique ID": "N/A",
"VBIOS version": "113-67XA6SSB1-D01",
"Temperature (Sensor edge) (C)": "45.0",
"Temperature (Sensor junction) (C)": "47.0",
"Temperature (Sensor memory) (C)": "46.0",
"dcefclk clock speed:": "(480Mhz)",
"dcefclk clock level:": "1",
"fclk clock speed:": "(1051Mhz)",
"fclk clock level:": "1",
"mclk clock speed:": "(96Mhz)",
"mclk clock level:": "0",
"sclk clock speed:": "(500Mhz)",
"sclk clock level:": "0",
"socclk clock speed:": "(685Mhz)",
"socclk clock level:": "1",
"pcie clock level": "1 (16.0GT/s x16)",
"sclk clock level": "0 (500Mhz)",
"Performance Level": "auto",
"GPU OverDrive value (%)": "0",
"GPU Memory OverDrive value (%)": "0",
"Max Graphics Package Power (W)": "211.0",
"Average Graphics Package Power (W)": "6.0",
"0": "2.5GT/s x1",
"1": "16.0GT/s x16 *",
"2": "1200Mhz",
"3": "1000Mhz",
"GPU use (%)": "0",
"GPU memory use (%)": "0",
"Memory Activity": "N/A",
"GPU memory vendor": "samsung",
"PCIe Replay Count": "0",
"Serial Number": "N/A",
"Voltage (mV)": "862",
"PCI Bus": "0000:07:00.0",
"VRAM Total Memory (B)": "12868124672",
"VRAM Total Used Memory (B)": "1564491776",
"VIS_VRAM Total Memory (B)": "268435456",
"VIS_VRAM Total Used Memory (B)": "70930432",
"GTT Total Memory (B)": "16792432640",
"GTT Total Used Memory (B)": "248328192",
"ASD firmware version": "0x210000bb",
"CE firmware version": "37",
"ME firmware version": "64",
"MEC firmware version": "116",
"MEC2 firmware version": "116",
"PFP firmware version": "97",
"RLC firmware version": "74",
"SDMA firmware version": "80",
"SDMA2 firmware version": "80",
"SMC firmware version": "00.65.60.00",
"SOS firmware version": "0x00220b0c",
"VCN firmware version": "0x0211e006",
"Card series": "Navi 22 [Radeon RX 6700/6700 XT / 6800M]",
"Card model": "0x6601",
"Card vendor": "Advanced Micro Devices, Inc. [AMD/ATI]",
"Card SKU": "67XA6SSB1",
"(Topology) Numa Node": "0",
"(Topology) Numa Affinity": "4294967295"
},
"system": {
"Driver version": "6.3.6"
}
}

View File

@ -0,0 +1,68 @@
{
"card0": {
"Device ID": "0x73df",
"Device Rev": "0xc1",
"Unique ID": "N/A",
"VBIOS version": "113-67XA6SSB1-D01",
"Temperature (Sensor edge) (C)": "45.0",
"Temperature (Sensor junction) (C)": "47.0",
"Temperature (Sensor memory) (C)": "46.0",
"dcefclk clock speed:": "(480Mhz)",
"dcefclk clock level:": "1",
"fclk clock speed:": "(1051Mhz)",
"fclk clock level:": "1",
"mclk clock speed:": "(96Mhz)",
"mclk clock level:": "0",
"sclk clock speed:": "(500Mhz)",
"sclk clock level:": "1",
"socclk clock speed:": "(685Mhz)",
"socclk clock level:": "1",
"pcie clock level": "1 (16.0GT/s x16)",
"sclk clock level": "1 (500Mhz)",
"Performance Level": "auto",
"GPU OverDrive value (%)": "0",
"GPU Memory OverDrive value (%)": "0",
"Max Graphics Package Power (W)": "211.0",
"Average Graphics Package Power (W)": "N/A (Secondary die)",
"0": "2.5GT/s x1",
"1": "16.0GT/s x16 *",
"2": "1200Mhz",
"3": "1000Mhz",
"GPU use (%)": "0",
"GPU memory use (%)": "0",
"Memory Activity": "N/A",
"Avg. Memory Bandwidth": "0",
"GPU memory vendor": "samsung",
"PCIe Replay Count": "0",
"Serial Number": "N/A",
"Voltage (mV)": "6",
"PCI Bus": "0000:07:00.0",
"VRAM Total Memory (B)": "12868124672",
"VRAM Total Used Memory (B)": "1572757504",
"VIS_VRAM Total Memory (B)": "268435456",
"VIS_VRAM Total Used Memory (B)": "70930432",
"GTT Total Memory (B)": "16792432640",
"GTT Total Used Memory (B)": "242049024",
"ASD firmware version": "0x210000bb",
"CE firmware version": "37",
"ME firmware version": "64",
"MEC firmware version": "116",
"MEC2 firmware version": "116",
"PFP firmware version": "97",
"RLC firmware version": "74",
"SDMA firmware version": "80",
"SDMA2 firmware version": "80",
"SMC firmware version": "00.65.60.00",
"SOS firmware version": "0x00220b0c",
"VCN firmware version": "0x0211e006",
"Card series": "Navi 22 [Radeon RX 6700/6700 XT / 6800M]",
"Card model": "0x6601",
"Card vendor": "Advanced Micro Devices, Inc. [AMD/ATI]",
"Card SKU": "67XA6SSB1",
"(Topology) Numa Node": "0",
"(Topology) Numa Affinity": "-1"
},
"system": {
"Driver version": "6.3.6"
}
}

View File

@ -0,0 +1,75 @@
{
"card0": {
"Device Name": "Navi 22 [Radeon RX 6700/6700 XT / 6800M]",
"Device ID": "0x73df",
"Device Rev": "0xc1",
"Subsystem ID": "0x6601",
"GUID": "55069",
"Unique ID": "N/A",
"VBIOS version": "113-67XA6SSB1-D01",
"Temperature (Sensor edge) (C)": "45.0",
"Temperature (Sensor junction) (C)": "47.0",
"Temperature (Sensor memory) (C)": "46.0",
"dcefclk clock speed:": "(480Mhz)",
"dcefclk clock level:": "1",
"fclk clock speed:": "(1051Mhz)",
"fclk clock level:": "1",
"mclk clock speed:": "(96Mhz)",
"mclk clock level:": "0",
"sclk clock speed:": "(0Mhz)",
"sclk clock level:": "0",
"socclk clock speed:": "(685Mhz)",
"socclk clock level:": "1",
"pcie clock level": "1 (16.0GT/s x16)",
"sclk clock level": "0 (0Mhz)",
"Performance Level": "auto",
"GPU OverDrive value (%)": "0",
"GPU Memory OverDrive value (%)": "0",
"Max Graphics Package Power (W)": "211.0",
"Average Graphics Package Power (W)": "6.0",
"0": "2.5GT/s x1",
"1": "16.0GT/s x16 *",
"2": "1200Mhz",
"3": "1000Mhz",
"GPU use (%)": "0",
"GPU Memory Allocated (VRAM%)": "12",
"GPU Memory Read/Write Activity (%)": "0",
"Memory Activity": "N/A",
"Avg. Memory Bandwidth": "0",
"GPU memory vendor": "samsung",
"PCIe Replay Count": "0",
"Serial Number": "N/A",
"Voltage (mV)": "6",
"PCI Bus": "0000:07:00.0",
"VRAM Total Memory (B)": "12868124672",
"VRAM Total Used Memory (B)": "1572745216",
"VIS_VRAM Total Memory (B)": "268435456",
"VIS_VRAM Total Used Memory (B)": "70930432",
"GTT Total Memory (B)": "16792432640",
"GTT Total Used Memory (B)": "242036736",
"ASD firmware version": "0x210000bb",
"CE firmware version": "37",
"ME firmware version": "64",
"MEC firmware version": "116",
"MEC2 firmware version": "116",
"PFP firmware version": "97",
"RLC firmware version": "74",
"SDMA firmware version": "80",
"SDMA2 firmware version": "80",
"SMC firmware version": "00.65.60.00",
"SOS firmware version": "0x00220b0c",
"VCN firmware version": "0x0211e006",
"Card Series": "Navi 22 [Radeon RX 6700/6700 XT / 6800M]",
"Card Model": "0x73df",
"Card Vendor": "Advanced Micro Devices, Inc. [AMD/ATI]",
"Card SKU": "67XA6SSB1",
"Node ID": "1",
"GFX Version": "gfx1031",
"(Topology) Numa Node": "0",
"(Topology) Numa Affinity": "-1"
},
"system": {
"Driver version": "6.3.6"
}
}