Skip to content
View in the app

A better way to browse. Learn more.

Unraid

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

[PLUGIN] GPU Statistics

Featured Replies

7 hours ago, SimonF said:

Seem to work ok on my system.

image.png

interesting, SMI shows 1w usage for the data i sent over w/ max of 70 but just reinstalled the app and now its working fine on my system too

image.thumb.png.6bbdf0d2d35fe4597f0412305cae4552.png

  • Replies 2.1k
  • Views 354.4k
  • Created
  • Last Reply

Top Posters In This Topic

Most Popular Posts

  • juan11perez
    juan11perez

    Good day, plugin also stopped working for me.   root@Unraid:/usr/local/emhttp/plugins/gpustat# cd /usr/local/emhttp/plugins/gpustat/ && php ./gpustatus.php Fatal error: Uncaught TypeE

  • I did some more work to get it to look like the CPU sidebar that comes with unraid 

  • I have created a PR for b3rs3rk's plugin to add MultiGPU support for 6.12 as Dashboard panels are different in 6.12. The PR works on pre realeases but does not provide Multi support. There are some ot

Posted Images

2 hours ago, Domokun said:

interesting, SMI shows 1w usage for the data i sent over w/ max of 70 but just reinstalled the app and now its working fine on my system too

image.thumb.png.6bbdf0d2d35fe4597f0412305cae4552.png

Power in xml is 23w will look to see why the bar is not working correctly.

dg1 gpu doesn't show correctly

image.thumb.png.714b81abf18aaa472061c67c5bca44a1.png

@SimonF I have a 14900K and the black bar for power draw is not seen, it is just white. All options enabled on the plugin settings and on the latest plugin version. Unraid version is 6.12.15. 

Active apps icon is also missing. Its actually jellyfin. Prior to the update, it was working properly.


image.png.98fc4aee79de75c0461384644343e8e5.png

image.png.a4bd3ab1077540baa9768533fedc1938.png

Edited by mans_

3 hours ago, mans_ said:

@SimonF I have a 14900K and the black bar for power draw is not seen, it is just white. All options enabled on the plugin settings and on the latest plugin version. Unraid version is 6.12.15. 

Active apps icon is also missing. Its actually jellyfin. Prior to the update, it was working properly.


image.png.98fc4aee79de75c0461384644343e8e5.png

image.png.a4bd3ab1077540baa9768533fedc1938.png

The power is problem matic as stop does not always report rc6. App I think you need to be on 7 as needed changes to the driver in newer kernel.

Want to say that the combo of the latest GPU stat/Intel_gpu_top plugins have broken the baseline detection I had with my Arc B580. Unless its always been "broken" and the latest updates simply exposed that.

 

The GPU works via passthrough to a Windows 11 VM (installed the latest Intel GPU Drivers through this VM as part of troubleshooting this situation), the GPU is shown as an option to be selected in the gpu stat options, see below.

 

image.png.f53be2ad92b7ddef524bcc8727795dd8.png

 

Although the widget still reports the following. 

 

image.png.8ba5c376b77f8d0a2b80e1330ed5e7bf.png 

 

This used to function. I also updated the kernel to 6.14.1, updated to Unraid 7.0.1 as well as removed/reinstalled both plugins. No change. Same output of lspci -k in the comment below.

 

 

Edited by jaybird2203

4 hours ago, jaybird2203 said:

Want to say that the combo of the latest GPU stat/Intel_gpu_top plugins have broken the baseline detection I had with my Arc B580. Unless its always been "broken" and the latest updates simply exposed that.

 

The GPU works via passthrough to a Windows 11 VM (installed the latest Intel GPU Drivers through this VM as part of troubleshooting this situation), the GPU is shown as an option to be selected in the gpu stat options, see below.

 

image.png.f53be2ad92b7ddef524bcc8727795dd8.png

 

Although the widget still reports the following. 

 

image.png.8ba5c376b77f8d0a2b80e1330ed5e7bf.png 

 

This used to function. I also updated the kernel to 6.14.1, updated to Unraid 7.0.1 as well as removed/reinstalled both plugins. No change. Same output of lspci -k in the comment below.

 

 

Intel_gpu_top does not work for BM so I have to pull info from other locations.

 

Mainly from  $basePath = "/sys/bus/pci/devices/$pciId";

 

Support is limited on kernel 6.12. Can you provide diagnostics

 

And tree /sys/bus/PCI/devices/0000\:0a\:00.0

10 hours ago, jaybird2203 said:

does a file called /tmp/inteljson exist on your system?

 

if not can you create this file with nano /tmp/inteltest.php with the content below

 

then run as with php -f /tmp/inteltest.php and provide the return data. I have tested the latest with arc770 on 6.14.1 and works on my system.

image.png

 

<?PHP
// Function to generate the JSON from sysfs data based on PCI ID
    function buildXEJSON($pciId)
    {
      
                      // Construct the sysfs path based on the supplied PCI ID
        $basePath = "/sys/bus/pci/devices/$pciId";
        
        // Ensure the path exists
        if (!file_exists($basePath)) {
            return json_encode(['error' => 'Invalid PCI ID or GPU not found']);
        }

        // Set paths for sysfs data based on the PCI ID
        $freqPath = "$basePath/gt/gt0/rps_act_freq_mhz"; // Actual frequency (MHz)
        $freqReqPath = "$basePath/gt/gt0/rps_req_freq_mhz"; // Requested frequency (MHz)
        #$powerPath = "$basePath/hwmon/hwmon*/power1_input"; // Power usage (uW), needs conversion to W
        #$rc6Path = "$basePath/gt/gt0/rc6_residency_ms"; // RC6 residency in ms
        #$interruptPath = "$basePath/msi_irqs"; // IRQ count (if available)

        // Collect necessary data from sysfs
        $duration = 1000.0; // Default duration in ms
        #$frequencyRequested = $this->readSysfsData($freqReqPath);
        ##$frequencyActual = $this->readSysfsData($freqPath);
        #$interruptsCount = $this->readSysfsData($interruptPath);
        #$rc6Value = $this->readSysfsData($rc6Path) / 10.0; // Convert to percentage if needed
        #$powerGpu = $this->readSysfsData($powerPath) / 1e6; // Convert µW to W
        #$powerPackage = $powerGpu * 0.8; // Approximate package power
        $frequencyRequested = null;
        $frequencyActual = null;
        $interruptsCount = null;
        $rc6Value = null; // Convert to percentage if needed
        $powerGpu = null; // Convert µW to W
        $powerPackage = null; // Approximate package power

        $clientsPath = "/sys/kernel/debug/dri/$pciId/clients";
        $clients = [];

        if (file_exists($clientsPath)) {
            $lines = file($clientsPath, FILE_IGNORE_NEW_LINES | FILE_SKIP_EMPTY_LINES);
            array_shift($lines); // Remove the header row

            foreach ($lines as $line) {
                $columns = preg_split('/\s+/', trim($line));
                if (count($columns) >= 6) {
                    list($command, $tgid, $dev, $master, $a, $uid) = $columns;
                    $clients[$tgid] = [
                        "name" => $command,
                        "pid" => $tgid,
                        "gpu_instance_id" => "N/A",
                        "compute_instance_id" => "N/A",
                        "type" => "C",
                        "used_memory" => "N/A"
                    ];
                }
            }
        }

        // Build the JSON structure
        $jsonOutput = [
            "period" => [
                "duration" => $duration,
                "unit" => "ms"
            ],
            "frequency" => [
                "requested" => $frequencyRequested,
                "actual" => $frequencyActual,
                "unit" => "MHz"
            ],
            "interrupts" => [
                "count" => $interruptsCount,
                "unit" => "irq/s"
            ],
            "rc6" => [
                "value" => $rc6Value,
                "unit" => "%"
            ],
            "power" => [
                "GPU" => $powerGpu,
                "Package" => $powerPackage,
                "unit" => "W"
            ],
            "engines" => [
                "Render/3D" => [
                    "busy" => 0.0, // Placeholder, requires actual path
                    "sema" => 0.0,
                    "wait" => 0.0,
                    "unit" => "%"
                ],
                "Blitter" => [
                    "busy" => 0.0,
                    "sema" => 0.0,
                    "wait" => 0.0,
                    "unit" => "%"
                ],
                "Video" => [
                    "busy" => 0.0,
                    "sema" => 0.0,
                    "wait" => 0.0,
                    "unit" => "%"
                ],
                "VideoEnhance" => [
                    "busy" => 0.0,
                    "sema" => 0.0,
                    "wait" => 0.0,
                    "unit" => "%"
                ]
            ],
            "clients" => $clients // Extend with real client data if available
        ];
        $returnjson[] = $jsonOutput;
        $returnjson[] = $jsonOutput;
        $return = json_encode($returnjson, JSON_PRETTY_PRINT);
        file_put_contents("/tmp/inteljson",$return);
        return $return;
    }

$json=buildXEJSON("0000:04:00.0");

var_dump($json);

?>

 

inteljson did exist in my tmp folder, here's the contents before i deleted the file then the command was ran. 

tmpinteljson.txt

 

output of inteltest as copied, also wasn't sure if the buildXEJSON id was supposed to match my details or the 04 that was written but there was no difference in the output between 0000:04:00.0 or 0000:0a:00.0

 

04 php test.txt

Edited by jaybird2203

2 hours ago, jaybird2203 said:

inteljson did exist in my tmp folder, here's the contents before i deleted the file then the command was ran. 

tmpinteljson.txt 2.38 kB · 0 downloads

 

output of inteltest as copied, also wasn't sure if the buildXEJSON id was supposed to match my details or the 04 that was written but there was no difference in the output between 0000:04:00.0 or 0000:0a:00.0

 

04 php test.txt 2.41 kB · 0 downloads

Thanks, yes sorry forgot to say will need to change to match your Pciid.

19 hours ago, jaybird2203 said:

inteljson did exist in my tmp folder, here's the contents before i deleted the file then the command was ran. 

tmpinteljson.txt 2.38 kB · 1 download

 

output of inteltest as copied, also wasn't sure if the buildXEJSON id was supposed to match my details or the 04 that was written but there was no difference in the output between 0000:04:00.0 or 0000:0a:00.0

 

04 php test.txt 2.41 kB · 1 download

can you confirm this reports XE?

udevadm info --query=property --path=/sys/bus/pci/devices/0000:0a:00.0 | grep 'DRIVER='

 

Confirmed, it's lower case xe though if that makes a difference or not

 

Screenshot_20250419_081435_Chrome.thumb.jpg.2ac19188d633bf1748d42d3fb4211e9f.jpg

Edited by jaybird2203

Just to throw some more details at this. When i have the GPU passing through to my VM and actively transcoding within the VM the details "change". See below. Prior images/data were pulled when the GPU was not being passed through to the VM. 

 

image.png.3b8a047ce1b4fa4b21eb75288f1da195.png

 

image.png.230d37e87c7202cb7a9c41475b2bcd0d.png

 

Yet while I have another docker actually using the xe driver and also transcoding content the client portion of the plugin does update but the rest appears to be empty (which is expected due to null responses).

 

image.png.93a9ff72b6a20a71a10a9c0eaa91aea2.png

Edited by jaybird2203

2 hours ago, jaybird2203 said:

Just to throw some more details at this. When i have the GPU passing through to my VM and actively transcoding within the VM the details "change". See below. Prior images/data were pulled when the GPU was not being passed through to the VM. 

 

image.png.3b8a047ce1b4fa4b21eb75288f1da195.png

 

image.png.230d37e87c7202cb7a9c41475b2bcd0d.png

 

Yet while I have another docker actually using the xe driver and also transcoding content the client portion of the plugin does update but the rest appears to be empty (which is expected due to null responses).

 

image.png.93a9ff72b6a20a71a10a9c0eaa91aea2.png

At present I have to create a json for XE cards as there is not a version of intel_gpu_top that works for XE.

 

There are not many exposed sysfs areas. needs kernel 6.16 for fans. I will chase my request for documentation from intel.

Sounds good to me. I'll be ready to test as much as needed to polish this up. I also have no issue flipping between Unraid and thor kernels as part of the testing as well.

Forgive me (i tried to search) but there's 74 pages here.

 

I don't seem to have ollama or immich show up in "active apps" when they're the ones using it - plex and jellyfin do (or did, I stopped using jellyfin) -- is there a way to get the correct active app showing up or does it need to be specifically supported?

34 minutes ago, CorneliousJD said:

Forgive me (i tried to search) but there's 74 pages here.

 

I don't seem to have ollama or immich show up in "active apps" when they're the ones using it - plex and jellyfin do (or did, I stopped using jellyfin) -- is there a way to get the correct active app showing up or does it need to be specifically supported?

Which GPU are you using?

On 4/20/2025 at 3:37 PM, SimonF said:

Which GPU are you using?

I'm using a Telsa P4 -- let me know if you need anything else from me on this one!

 

image.png.0f8a4bdf370a52fcf9a52630b4dde1bc.png

3 minutes ago, CorneliousJD said:

I'm using a Telsa P4 -- let me know if you need anything else from me on this one!

 

image.png.0f8a4bdf370a52fcf9a52630b4dde1bc.png

Do the apps show if you run nvidia-smi?

22 hours ago, SimonF said:

Do the apps show if you run nvidia-smi?

Immich is processing stuff right now and it looks like it shows python (not sure why, maybe the machine learning?) plus ffmpeg right now.

 

image.png.db6832229696501a6ec48856e1fbaab8.png

3 minutes ago, CorneliousJD said:

Immich is processing stuff right now and it looks like it shows python (not sure why, maybe the machine learning?) plus ffmpeg right now.

 

image.png.db6832229696501a6ec48856e1fbaab8.png

Can you provide nvidia-smi -q -x

1 hour ago, SimonF said:

nvidia-smi -q -x

 

Sure thing - here you go!

 

root@Server:~# nvidia-smi -q -x 
<?xml version="1.0" ?>
<!DOCTYPE nvidia_smi_log SYSTEM "nvsmi_device_v12.dtd">
<nvidia_smi_log>
        <timestamp>Wed Apr 23 10:16:01 2025</timestamp>
        <driver_version>570.133.07</driver_version>
        <cuda_version>12.8</cuda_version>
        <attached_gpus>1</attached_gpus>
        <gpu id="00000000:03:00.0">
                <product_name>Tesla P4</product_name>
                <product_brand>Tesla</product_brand>
                <product_architecture>Pascal</product_architecture>
                <display_mode>Disabled</display_mode>
                <display_active>Disabled</display_active>
                <persistence_mode>Disabled</persistence_mode>
                <addressing_mode>N/A</addressing_mode>
                <mig_mode>
                        <current_mig>N/A</current_mig>
                        <pending_mig>N/A</pending_mig>
                </mig_mode>
                <mig_devices>
                        None
                </mig_devices>
                <accounting_mode>Disabled</accounting_mode>
                <accounting_mode_buffer_size>4000</accounting_mode_buffer_size>
                <driver_model>
                        <current_dm>N/A</current_dm>
                        <pending_dm>N/A</pending_dm>
                </driver_model>
                <serial>0324217034962</serial>
                <uuid>GPU-b66cd31a-0bd7-b94d-ce2d-24507ee05576</uuid>
                <minor_number>0</minor_number>
                <vbios_version>86.04.55.00.01</vbios_version>
                <multigpu_board>No</multigpu_board>
                <board_id>0x300</board_id>
                <board_part_number>900-2G414-0000-000</board_part_number>
                <gpu_part_number>1BB3-895-A1</gpu_part_number>
                <gpu_fru_part_number>N/A</gpu_fru_part_number>
                <platformInfo>
                        <chassis_serial_number>N/A</chassis_serial_number>
                        <slot_number>N/A</slot_number>
                        <tray_index>N/A</tray_index>
                        <host_id>N/A</host_id>
                        <peer_type>N/A</peer_type>
                        <module_id>1</module_id>
                        <gpu_fabric_guid>N/A</gpu_fabric_guid>
                </platformInfo>
                <inforom_version>
                        <img_version>G414.0200.00.03</img_version>
                        <oem_object>1.1</oem_object>
                        <ecc_object>4.1</ecc_object>
                        <pwr_object>N/A</pwr_object>
                </inforom_version>
                <inforom_bbx_flush>
                        <latest_timestamp>N/A</latest_timestamp>
                        <latest_duration>N/A</latest_duration>
                </inforom_bbx_flush>
                <gpu_operation_mode>
                        <current_gom>N/A</current_gom>
                        <pending_gom>N/A</pending_gom>
                </gpu_operation_mode>
                <c2c_mode>N/A</c2c_mode>
                <gpu_virtualization_mode>
                        <virtualization_mode>None</virtualization_mode>
                        <host_vgpu_mode>N/A</host_vgpu_mode>
                        <vgpu_heterogeneous_mode>N/A</vgpu_heterogeneous_mode>
                </gpu_virtualization_mode>
                <gpu_reset_status>
                        <reset_required>Requested functionality has been deprecated</reset_required>
                        <drain_and_reset_recommended>Requested functionality has been deprecated</drain_and_reset_recommended>
                </gpu_reset_status>
                <gpu_recovery_action>None</gpu_recovery_action>
                <gsp_firmware_version>N/A</gsp_firmware_version>
                <ibmnpu>
                        <relaxed_ordering_mode>N/A</relaxed_ordering_mode>
                </ibmnpu>
                <pci>
                        <pci_bus>03</pci_bus>
                        <pci_device>00</pci_device>
                        <pci_domain>0000</pci_domain>
                        <pci_base_class>3</pci_base_class>
                        <pci_sub_class>2</pci_sub_class>
                        <pci_device_id>1BB310DE</pci_device_id>
                        <pci_bus_id>00000000:03:00.0</pci_bus_id>
                        <pci_sub_system_id>11D810DE</pci_sub_system_id>
                        <pci_gpu_link_info>
                                <pcie_gen>
                                        <max_link_gen>3</max_link_gen>
                                        <current_link_gen>3</current_link_gen>
                                        <device_current_link_gen>3</device_current_link_gen>
                                        <max_device_link_gen>3</max_device_link_gen>
                                        <max_host_link_gen>3</max_host_link_gen>
                                </pcie_gen>
                                <link_widths>
                                        <max_link_width>16x</max_link_width>
                                        <current_link_width>16x</current_link_width>
                                </link_widths>
                        </pci_gpu_link_info>
                        <pci_bridge_chip>
                                <bridge_chip_type>N/A</bridge_chip_type>
                                <bridge_chip_fw>N/A</bridge_chip_fw>
                        </pci_bridge_chip>
                        <replay_counter>0</replay_counter>
                        <replay_rollover_counter>0</replay_rollover_counter>
                        <tx_util>47350 KB/s</tx_util>
                        <rx_util>340600 KB/s</rx_util>
                        <atomic_caps_outbound>N/A</atomic_caps_outbound>
                        <atomic_caps_inbound>N/A</atomic_caps_inbound>
                </pci>
                <fan_speed>N/A</fan_speed>
                <performance_state>P0</performance_state>
                <clocks_event_reasons>
                        <clocks_event_reason_gpu_idle>Not Active</clocks_event_reason_gpu_idle>
                        <clocks_event_reason_applications_clocks_setting>Not Active</clocks_event_reason_applications_clocks_setting>
                        <clocks_event_reason_sw_power_cap>Not Active</clocks_event_reason_sw_power_cap>
                        <clocks_event_reason_hw_slowdown>Not Active</clocks_event_reason_hw_slowdown>
                        <clocks_event_reason_hw_thermal_slowdown>Not Active</clocks_event_reason_hw_thermal_slowdown>
                        <clocks_event_reason_hw_power_brake_slowdown>Not Active</clocks_event_reason_hw_power_brake_slowdown>
                        <clocks_event_reason_sync_boost>Not Active</clocks_event_reason_sync_boost>
                        <clocks_event_reason_sw_thermal_slowdown>Not Active</clocks_event_reason_sw_thermal_slowdown>
                        <clocks_event_reason_display_clocks_setting>Not Active</clocks_event_reason_display_clocks_setting>
                </clocks_event_reasons>
                <sparse_operation_mode>N/A</sparse_operation_mode>
                <fb_memory_usage>
                        <total>7680 MiB</total>
                        <reserved>81 MiB</reserved>
                        <used>280 MiB</used>
                        <free>7321 MiB</free>
                </fb_memory_usage>
                <bar1_memory_usage>
                        <total>256 MiB</total>
                        <used>2 MiB</used>
                        <free>254 MiB</free>
                </bar1_memory_usage>
                <cc_protected_memory_usage>
                        <total>0 MiB</total>
                        <used>0 MiB</used>
                        <free>0 MiB</free>
                </cc_protected_memory_usage>
                <compute_mode>Default</compute_mode>
                <utilization>
                        <gpu_util>5 %</gpu_util>
                        <memory_util>1 %</memory_util>
                        <encoder_util>10 %</encoder_util>
                        <decoder_util>0 %</decoder_util>
                        <jpeg_util>N/A</jpeg_util>
                        <ofa_util>N/A</ofa_util>
                </utilization>
                <encoder_stats>
                        <session_count>1</session_count>
                        <average_fps>98</average_fps>
                        <average_latency>2015</average_latency>
                </encoder_stats>
                <fbc_stats>
                        <session_count>0</session_count>
                        <average_fps>0</average_fps>
                        <average_latency>0</average_latency>
                </fbc_stats>
                <dram_encryption_mode>
                        <current_dram_encryption>N/A</current_dram_encryption>
                        <pending_dram_encryption>N/A</pending_dram_encryption>
                </dram_encryption_mode>
                <ecc_mode>
                        <current_ecc>Enabled</current_ecc>
                        <pending_ecc>Enabled</pending_ecc>
                </ecc_mode>
                <ecc_errors>
                        <volatile>
                                <single_bit>
                                        <device_memory>0</device_memory>
                                        <register_file>N/A</register_file>
                                        <l1_cache>N/A</l1_cache>
                                        <l2_cache>N/A</l2_cache>
                                        <texture_memory>N/A</texture_memory>
                                        <texture_shm>N/A</texture_shm>
                                        <cbu>N/A</cbu>
                                        <total>0</total>
                                </single_bit>
                                <double_bit>
                                        <device_memory>0</device_memory>
                                        <register_file>N/A</register_file>
                                        <l1_cache>N/A</l1_cache>
                                        <l2_cache>N/A</l2_cache>
                                        <texture_memory>N/A</texture_memory>
                                        <texture_shm>N/A</texture_shm>
                                        <cbu>N/A</cbu>
                                        <total>0</total>
                                </double_bit>
                        </volatile>
                        <aggregate>
                                <single_bit>
                                        <device_memory>0</device_memory>
                                        <register_file>N/A</register_file>
                                        <l1_cache>N/A</l1_cache>
                                        <l2_cache>N/A</l2_cache>
                                        <texture_memory>N/A</texture_memory>
                                        <texture_shm>N/A</texture_shm>
                                        <cbu>N/A</cbu>
                                        <total>0</total>
                                </single_bit>
                                <double_bit>
                                        <device_memory>0</device_memory>
                                        <register_file>N/A</register_file>
                                        <l1_cache>N/A</l1_cache>
                                        <l2_cache>N/A</l2_cache>
                                        <texture_memory>N/A</texture_memory>
                                        <texture_shm>N/A</texture_shm>
                                        <cbu>N/A</cbu>
                                        <total>0</total>
                                </double_bit>
                        </aggregate>
                </ecc_errors>
                <retired_pages>
                        <multiple_single_bit_retirement>
                                <retired_count>0</retired_count>
                                <retired_pagelist>
                                </retired_pagelist>
                        </multiple_single_bit_retirement>
                        <double_bit_retirement>
                                <retired_count>0</retired_count>
                                <retired_pagelist>
                                </retired_pagelist>
                        </double_bit_retirement>
                        <pending_blacklist>No</pending_blacklist>
                        <pending_retirement>No</pending_retirement>
                </retired_pages>
                <remapped_rows>N/A</remapped_rows>
                <temperature>
                        <gpu_temp>48 C</gpu_temp>
                        <gpu_temp_tlimit>N/A</gpu_temp_tlimit>
                        <gpu_temp_max_threshold>94 C</gpu_temp_max_threshold>
                        <gpu_temp_slow_threshold>91 C</gpu_temp_slow_threshold>
                        <gpu_temp_max_gpu_threshold>N/A</gpu_temp_max_gpu_threshold>
                        <gpu_target_temperature>N/A</gpu_target_temperature>
                        <memory_temp>N/A</memory_temp>
                        <gpu_temp_max_mem_threshold>N/A</gpu_temp_max_mem_threshold>
                </temperature>
                <supported_gpu_target_temp>
                        <gpu_target_temp_min>N/A</gpu_target_temp_min>
                        <gpu_target_temp_max>N/A</gpu_target_temp_max>
                </supported_gpu_target_temp>
                <gpu_power_readings>
                        <power_state>P0</power_state>
                        <average_power_draw>N/A</average_power_draw>
                        <instant_power_draw>23.87 W</instant_power_draw>
                        <current_power_limit>75.00 W</current_power_limit>
                        <requested_power_limit>75.00 W</requested_power_limit>
                        <default_power_limit>75.00 W</default_power_limit>
                        <min_power_limit>60.00 W</min_power_limit>
                        <max_power_limit>75.00 W</max_power_limit>
                </gpu_power_readings>
                <gpu_memory_power_readings>
                        <average_power_draw>N/A</average_power_draw>
                        <instant_power_draw>N/A</instant_power_draw>
                </gpu_memory_power_readings>
                <module_power_readings>
                        <power_state>P0</power_state>
                        <average_power_draw>N/A</average_power_draw>
                        <instant_power_draw>N/A</instant_power_draw>
                        <current_power_limit>N/A</current_power_limit>
                        <requested_power_limit>N/A</requested_power_limit>
                        <default_power_limit>N/A</default_power_limit>
                        <min_power_limit>N/A</min_power_limit>
                        <max_power_limit>N/A</max_power_limit>
                </module_power_readings>
                <power_smoothing>N/A</power_smoothing>
                <power_profiles>
                        <power_profile_requested_profiles>N/A</power_profile_requested_profiles>
                        <power_profile_enforced_profiles>N/A</power_profile_enforced_profiles>
                </power_profiles>
                <clocks>
                        <graphics_clock>885 MHz</graphics_clock>
                        <sm_clock>885 MHz</sm_clock>
                        <mem_clock>2999 MHz</mem_clock>
                        <video_clock>784 MHz</video_clock>
                </clocks>
                <applications_clocks>
                        <graphics_clock>885 MHz</graphics_clock>
                        <mem_clock>3003 MHz</mem_clock>
                </applications_clocks>
                <default_applications_clocks>
                        <graphics_clock>885 MHz</graphics_clock>
                        <mem_clock>3003 MHz</mem_clock>
                </default_applications_clocks>
                <deferred_clocks>
                        <mem_clock>N/A</mem_clock>
                </deferred_clocks>
                <max_clocks>
                        <graphics_clock>1531 MHz</graphics_clock>
                        <sm_clock>1531 MHz</sm_clock>
                        <mem_clock>3003 MHz</mem_clock>
                        <video_clock>1379 MHz</video_clock>
                </max_clocks>
                <max_customer_boost_clocks>
                        <graphics_clock>1113 MHz</graphics_clock>
                </max_customer_boost_clocks>
                <clock_policy>
                        <auto_boost>N/A</auto_boost>
                        <auto_boost_default>N/A</auto_boost_default>
                </clock_policy>
                <voltage>
                        <graphics_volt>N/A</graphics_volt>
                </voltage>
                <fabric>
                        <state>N/A</state>
                        <status>N/A</status>
                        <cliqueId>N/A</cliqueId>
                        <clusterUuid>N/A</clusterUuid>
                        <health>
                                <bandwidth>N/A</bandwidth>
                                <route_recovery_in_progress>N/A</route_recovery_in_progress>
                                <route_unhealthy>N/A</route_unhealthy>
                                <access_timeout_recovery>N/A</access_timeout_recovery>
                        </health>
                </fabric>
                <supported_clocks>
                        <supported_mem_clock>
                                <value>3003 MHz</value>
                                <supported_graphics_clock>1531 MHz</supported_graphics_clock>
                                <supported_graphics_clock>1518 MHz</supported_graphics_clock>
                                <supported_graphics_clock>1506 MHz</supported_graphics_clock>
                                <supported_graphics_clock>1493 MHz</supported_graphics_clock>
                                <supported_graphics_clock>1480 MHz</supported_graphics_clock>
                                <supported_graphics_clock>1468 MHz</supported_graphics_clock>
                                <supported_graphics_clock>1455 MHz</supported_graphics_clock>
                                <supported_graphics_clock>1442 MHz</supported_graphics_clock>
                                <supported_graphics_clock>1430 MHz</supported_graphics_clock>
                                <supported_graphics_clock>1417 MHz</supported_graphics_clock>
                                <supported_graphics_clock>1404 MHz</supported_graphics_clock>
                                <supported_graphics_clock>1392 MHz</supported_graphics_clock>
                                <supported_graphics_clock>1379 MHz</supported_graphics_clock>
                                <supported_graphics_clock>1366 MHz</supported_graphics_clock>
                                <supported_graphics_clock>1354 MHz</supported_graphics_clock>
                                <supported_graphics_clock>1341 MHz</supported_graphics_clock>
                                <supported_graphics_clock>1328 MHz</supported_graphics_clock>
                                <supported_graphics_clock>1316 MHz</supported_graphics_clock>
                                <supported_graphics_clock>1303 MHz</supported_graphics_clock>
                                <supported_graphics_clock>1290 MHz</supported_graphics_clock>
                                <supported_graphics_clock>1278 MHz</supported_graphics_clock>
                                <supported_graphics_clock>1265 MHz</supported_graphics_clock>
                                <supported_graphics_clock>1252 MHz</supported_graphics_clock>
                                <supported_graphics_clock>1240 MHz</supported_graphics_clock>
                                <supported_graphics_clock>1227 MHz</supported_graphics_clock>
                                <supported_graphics_clock>1215 MHz</supported_graphics_clock>
                                <supported_graphics_clock>1202 MHz</supported_graphics_clock>
                                <supported_graphics_clock>1189 MHz</supported_graphics_clock>
                                <supported_graphics_clock>1177 MHz</supported_graphics_clock>
                                <supported_graphics_clock>1164 MHz</supported_graphics_clock>
                                <supported_graphics_clock>1151 MHz</supported_graphics_clock>
                                <supported_graphics_clock>1139 MHz</supported_graphics_clock>
                                <supported_graphics_clock>1126 MHz</supported_graphics_clock>
                                <supported_graphics_clock>1113 MHz</supported_graphics_clock>
                                <supported_graphics_clock>1101 MHz</supported_graphics_clock>
                                <supported_graphics_clock>1088 MHz</supported_graphics_clock>
                                <supported_graphics_clock>1075 MHz</supported_graphics_clock>
                                <supported_graphics_clock>1063 MHz</supported_graphics_clock>
                                <supported_graphics_clock>1050 MHz</supported_graphics_clock>
                                <supported_graphics_clock>1037 MHz</supported_graphics_clock>
                                <supported_graphics_clock>1025 MHz</supported_graphics_clock>
                                <supported_graphics_clock>1012 MHz</supported_graphics_clock>
                                <supported_graphics_clock>999 MHz</supported_graphics_clock>
                                <supported_graphics_clock>987 MHz</supported_graphics_clock>
                                <supported_graphics_clock>974 MHz</supported_graphics_clock>
                                <supported_graphics_clock>961 MHz</supported_graphics_clock>
                                <supported_graphics_clock>949 MHz</supported_graphics_clock>
                                <supported_graphics_clock>936 MHz</supported_graphics_clock>
                                <supported_graphics_clock>923 MHz</supported_graphics_clock>
                                <supported_graphics_clock>911 MHz</supported_graphics_clock>
                                <supported_graphics_clock>898 MHz</supported_graphics_clock>
                                <supported_graphics_clock>885 MHz</supported_graphics_clock>
                                <supported_graphics_clock>873 MHz</supported_graphics_clock>
                                <supported_graphics_clock>860 MHz</supported_graphics_clock>
                                <supported_graphics_clock>847 MHz</supported_graphics_clock>
                                <supported_graphics_clock>835 MHz</supported_graphics_clock>
                                <supported_graphics_clock>822 MHz</supported_graphics_clock>
                                <supported_graphics_clock>810 MHz</supported_graphics_clock>
                                <supported_graphics_clock>797 MHz</supported_graphics_clock>
                                <supported_graphics_clock>784 MHz</supported_graphics_clock>
                                <supported_graphics_clock>772 MHz</supported_graphics_clock>
                                <supported_graphics_clock>759 MHz</supported_graphics_clock>
                                <supported_graphics_clock>746 MHz</supported_graphics_clock>
                                <supported_graphics_clock>734 MHz</supported_graphics_clock>
                                <supported_graphics_clock>721 MHz</supported_graphics_clock>
                                <supported_graphics_clock>708 MHz</supported_graphics_clock>
                                <supported_graphics_clock>696 MHz</supported_graphics_clock>
                                <supported_graphics_clock>683 MHz</supported_graphics_clock>
                                <supported_graphics_clock>670 MHz</supported_graphics_clock>
                                <supported_graphics_clock>658 MHz</supported_graphics_clock>
                                <supported_graphics_clock>645 MHz</supported_graphics_clock>
                                <supported_graphics_clock>632 MHz</supported_graphics_clock>
                                <supported_graphics_clock>620 MHz</supported_graphics_clock>
                                <supported_graphics_clock>607 MHz</supported_graphics_clock>
                                <supported_graphics_clock>594 MHz</supported_graphics_clock>
                                <supported_graphics_clock>582 MHz</supported_graphics_clock>
                                <supported_graphics_clock>569 MHz</supported_graphics_clock>
                                <supported_graphics_clock>556 MHz</supported_graphics_clock>
                                <supported_graphics_clock>544 MHz</supported_graphics_clock>
                                <supported_graphics_clock>531 MHz</supported_graphics_clock>
                                <supported_graphics_clock>518 MHz</supported_graphics_clock>
                                <supported_graphics_clock>506 MHz</supported_graphics_clock>
                                <supported_graphics_clock>493 MHz</supported_graphics_clock>
                                <supported_graphics_clock>480 MHz</supported_graphics_clock>
                                <supported_graphics_clock>468 MHz</supported_graphics_clock>
                                <supported_graphics_clock>455 MHz</supported_graphics_clock>
                        </supported_mem_clock>
                        <supported_mem_clock>
                                <value>405 MHz</value>
                                <supported_graphics_clock>455 MHz</supported_graphics_clock>
                        </supported_mem_clock>
                </supported_clocks>
                <processes>
                        <process_info>
                                <gpu_instance_id>N/A</gpu_instance_id>
                                <compute_instance_id>N/A</compute_instance_id>
                                <pid>3358454</pid>
                                <type>C</type>
                                <process_name>/usr/bin/ffmpeg</process_name>
                                <used_memory>277 MiB</used_memory>
                        </process_info>
                </processes>
                <accounted_processes>
                </accounted_processes>
                <capabilities>
                        <egm>disabled</egm>
                </capabilities>
        </gpu>

</nvidia_smi_log>
root@Server:~# 

 

Hello,

 

Wanted to report that it's doesn't seems to work with the Intel B580 arc gpu.

 

Saw that someone else reported it. 

 

Thank you

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

Account

Navigation

Search

Search

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.