├── .gitattributes ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ └── feature_request.md ├── dependabot.yml └── workflows │ ├── build-packages.yaml │ ├── generate-fedora-spec.yaml │ ├── rust.yml │ └── trigger-copr.yaml ├── .gitignore ├── .pkger.yml ├── API.md ├── Cargo.lock ├── Cargo.toml ├── LICENSE ├── Makefile ├── README.md ├── clippy.toml ├── docs ├── API.md └── CONFIG.md ├── flatpak ├── README.md ├── generated-sources.json ├── io.github.ilya_zlobintsev.LACT.yaml └── startup.sh ├── lact-cli ├── Cargo.toml └── src │ └── lib.rs ├── lact-client ├── Cargo.toml └── src │ ├── connection.rs │ ├── connection │ ├── tcp.rs │ └── unix.rs │ ├── lib.rs │ └── macros.rs ├── lact-daemon ├── Cargo.toml ├── build.rs ├── fetch_vulkan_schema.sh ├── include │ ├── drm │ │ ├── drm.h │ │ ├── drm_mode.h │ │ ├── i915_drm.h │ │ ├── intel_bufmgr.h │ │ └── xe_drm.h │ ├── intel.h │ ├── nvidia.h │ └── nvidia │ │ ├── README.md │ │ ├── kernel-open │ │ └── common │ │ │ └── inc │ │ │ └── nv-ioctl-numbers.h │ │ └── src │ │ ├── common │ │ └── sdk │ │ │ └── nvidia │ │ │ └── inc │ │ │ ├── alloc │ │ │ ├── alloc_access_counter_buffer.h │ │ │ └── alloc_channel.h │ │ │ ├── class │ │ │ ├── cl0080.h │ │ │ ├── cl0080_notification.h │ │ │ ├── cl2080.h │ │ │ ├── cl2080_notification.h │ │ │ ├── cl9010.h │ │ │ └── cl9010_callback.h │ │ │ ├── cpuopsys.h │ │ │ ├── ctrl │ │ │ ├── ctrl0080 │ │ │ │ ├── ctrl0080base.h │ │ │ │ └── ctrl0080gr.h │ │ │ ├── ctrl2080 │ │ │ │ ├── ctrl2080base.h │ │ │ │ ├── ctrl2080fb.h │ │ │ │ └── ctrl2080gr.h │ │ │ └── ctrlxxxx.h │ │ │ ├── nvcfg_sdk.h │ │ │ ├── nvgputypes.h │ │ │ ├── nvlimits.h │ │ │ ├── nvmisc.h │ │ │ ├── nvos.h │ │ │ ├── nvstatus.h │ │ │ ├── nvstatuscodes.h │ │ │ ├── nvtypes.h │ │ │ └── rs_access.h │ │ └── nvidia │ │ └── arch │ │ └── nvalloc │ │ └── unix │ │ └── include │ │ └── nv_escape.h ├── src │ ├── bindings.rs │ ├── config.rs │ ├── lib.rs │ ├── server.rs │ ├── server │ │ ├── gpu_controller.rs │ │ ├── gpu_controller │ │ │ ├── amd.rs │ │ │ ├── fan_control.rs │ │ │ ├── intel.rs │ │ │ ├── intel │ │ │ │ ├── drm.rs │ │ │ │ └── drm │ │ │ │ │ ├── i915.rs │ │ │ │ │ └── xe.rs │ │ │ ├── nvidia.rs │ │ │ └── nvidia │ │ │ │ └── driver.rs │ │ ├── handler.rs │ │ ├── opencl.rs │ │ ├── profiles.rs │ │ ├── profiles │ │ │ ├── gamemode.rs │ │ │ └── process.rs │ │ ├── system.rs │ │ └── vulkan.rs │ ├── snapshots │ │ └── lact_daemon__config__tests__parse_doc.snap │ ├── socket.rs │ ├── suspend.rs │ └── tests │ │ ├── data │ │ ├── amd │ │ │ ├── hd7870 │ │ │ │ └── card0 │ │ │ │ │ └── device │ │ │ │ │ ├── current_link_speed │ │ │ │ │ ├── current_link_width │ │ │ │ │ ├── hwmon │ │ │ │ │ └── hwmon3 │ │ │ │ │ │ ├── freq1_input │ │ │ │ │ │ ├── name │ │ │ │ │ │ ├── pwm1 │ │ │ │ │ │ ├── pwm1_enable │ │ │ │ │ │ ├── pwm1_max │ │ │ │ │ │ ├── pwm1_min │ │ │ │ │ │ ├── temp1_crit │ │ │ │ │ │ ├── temp1_crit_hyst │ │ │ │ │ │ └── temp1_input │ │ │ │ │ ├── uevent │ │ │ │ │ └── vendor │ │ │ ├── r9-280 │ │ │ │ └── card0 │ │ │ │ │ └── device │ │ │ │ │ ├── current_link_speed │ │ │ │ │ ├── current_link_width │ │ │ │ │ ├── hwmon │ │ │ │ │ └── hwmon0 │ │ │ │ │ │ ├── fan1_enable │ │ │ │ │ │ ├── freq1_input │ │ │ │ │ │ ├── freq1_label │ │ │ │ │ │ ├── freq2_input │ │ │ │ │ │ ├── freq2_label │ │ │ │ │ │ ├── name │ │ │ │ │ │ ├── power1_label │ │ │ │ │ │ ├── pwm1 │ │ │ │ │ │ ├── pwm1_enable │ │ │ │ │ │ ├── pwm1_max │ │ │ │ │ │ ├── pwm1_min │ │ │ │ │ │ ├── temp1_crit │ │ │ │ │ │ ├── temp1_crit_hyst │ │ │ │ │ │ ├── temp1_input │ │ │ │ │ │ └── temp1_label │ │ │ │ │ ├── pp_dpm_mclk │ │ │ │ │ ├── pp_dpm_pcie │ │ │ │ │ ├── pp_dpm_sclk │ │ │ │ │ ├── pp_force_state │ │ │ │ │ ├── pp_num_states │ │ │ │ │ ├── pp_table │ │ │ │ │ ├── uevent │ │ │ │ │ ├── vbios_version │ │ │ │ │ └── vendor │ │ │ ├── rx5500xt │ │ │ │ ├── card1 │ │ │ │ │ ├── dev │ │ │ │ │ ├── device │ │ │ │ │ │ ├── current_link_speed │ │ │ │ │ │ ├── current_link_width │ │ │ │ │ │ ├── gpu_busy_percent │ │ │ │ │ │ ├── hwmon │ │ │ │ │ │ │ └── hwmon3 │ │ │ │ │ │ │ │ ├── fan1_enable │ │ │ │ │ │ │ │ ├── fan1_input │ │ │ │ │ │ │ │ ├── fan1_max │ │ │ │ │ │ │ │ ├── fan1_min │ │ │ │ │ │ │ │ ├── fan1_target │ │ │ │ │ │ │ │ ├── freq1_input │ │ │ │ │ │ │ │ ├── freq1_label │ │ │ │ │ │ │ │ ├── freq2_input │ │ │ │ │ │ │ │ ├── freq2_label │ │ │ │ │ │ │ │ ├── in0_input │ │ │ │ │ │ │ │ ├── in0_label │ │ │ │ │ │ │ │ ├── name │ │ │ │ │ │ │ │ ├── power │ │ │ │ │ │ │ │ ├── async │ │ │ │ │ │ │ │ ├── control │ │ │ │ │ │ │ │ ├── runtime_active_kids │ │ │ │ │ │ │ │ ├── runtime_active_time │ │ │ │ │ │ │ │ ├── runtime_enabled │ │ │ │ │ │ │ │ ├── runtime_status │ │ │ │ │ │ │ │ ├── runtime_suspended_time │ │ │ │ │ │ │ │ └── runtime_usage │ │ │ │ │ │ │ │ ├── power1_average │ │ │ │ │ │ │ │ ├── power1_cap │ │ │ │ │ │ │ │ ├── power1_cap_default │ │ │ │ │ │ │ │ ├── power1_cap_max │ │ │ │ │ │ │ │ ├── power1_cap_min │ │ │ │ │ │ │ │ ├── power1_label │ │ │ │ │ │ │ │ ├── pwm1 │ │ │ │ │ │ │ │ ├── pwm1_enable │ │ │ │ │ │ │ │ ├── pwm1_max │ │ │ │ │ │ │ │ ├── pwm1_min │ │ │ │ │ │ │ │ ├── temp1_crit │ │ │ │ │ │ │ │ ├── temp1_crit_hyst │ │ │ │ │ │ │ │ ├── temp1_emergency │ │ │ │ │ │ │ │ ├── temp1_input │ │ │ │ │ │ │ │ ├── temp1_label │ │ │ │ │ │ │ │ ├── temp2_crit │ │ │ │ │ │ │ │ ├── temp2_crit_hyst │ │ │ │ │ │ │ │ ├── temp2_emergency │ │ │ │ │ │ │ │ ├── temp2_input │ │ │ │ │ │ │ │ ├── temp2_label │ │ │ │ │ │ │ │ ├── temp3_crit │ │ │ │ │ │ │ │ ├── temp3_crit_hyst │ │ │ │ │ │ │ │ ├── temp3_emergency │ │ │ │ │ │ │ │ ├── temp3_input │ │ │ │ │ │ │ │ ├── temp3_label │ │ │ │ │ │ │ │ └── uevent │ │ │ │ │ │ ├── pp_cur_state │ │ │ │ │ │ ├── pp_dpm_mclk │ │ │ │ │ │ ├── pp_dpm_pcie │ │ │ │ │ │ ├── pp_dpm_sclk │ │ │ │ │ │ ├── pp_dpm_socclk │ │ │ │ │ │ ├── pp_features │ │ │ │ │ │ ├── pp_force_state │ │ │ │ │ │ ├── pp_num_states │ │ │ │ │ │ ├── pp_od_clk_voltage │ │ │ │ │ │ ├── pp_power_profile_mode │ │ │ │ │ │ ├── pp_table │ │ │ │ │ │ ├── uevent │ │ │ │ │ │ ├── vbios_version │ │ │ │ │ │ └── vendor │ │ │ │ │ └── uevent │ │ │ │ └── config.yaml │ │ │ ├── rx5700xt │ │ │ │ └── card1 │ │ │ │ │ └── device │ │ │ │ │ ├── current_link_speed │ │ │ │ │ ├── current_link_width │ │ │ │ │ ├── gpu_busy_percent │ │ │ │ │ ├── hwmon │ │ │ │ │ └── hwmon1 │ │ │ │ │ │ ├── fan1_enable │ │ │ │ │ │ ├── fan1_input │ │ │ │ │ │ ├── fan1_max │ │ │ │ │ │ ├── fan1_min │ │ │ │ │ │ ├── fan1_target │ │ │ │ │ │ ├── freq1_input │ │ │ │ │ │ ├── freq1_label │ │ │ │ │ │ ├── freq2_input │ │ │ │ │ │ ├── freq2_label │ │ │ │ │ │ ├── in0_input │ │ │ │ │ │ ├── in0_label │ │ │ │ │ │ ├── name │ │ │ │ │ │ ├── power1_average │ │ │ │ │ │ ├── power1_cap │ │ │ │ │ │ ├── power1_cap_default │ │ │ │ │ │ ├── power1_cap_max │ │ │ │ │ │ ├── power1_cap_min │ │ │ │ │ │ ├── power1_label │ │ │ │ │ │ ├── pwm1 │ │ │ │ │ │ ├── pwm1_enable │ │ │ │ │ │ ├── pwm1_max │ │ │ │ │ │ ├── pwm1_min │ │ │ │ │ │ ├── temp1_crit │ │ │ │ │ │ ├── temp1_crit_hyst │ │ │ │ │ │ ├── temp1_emergency │ │ │ │ │ │ ├── temp1_input │ │ │ │ │ │ ├── temp1_label │ │ │ │ │ │ ├── temp2_crit │ │ │ │ │ │ ├── temp2_crit_hyst │ │ │ │ │ │ ├── temp2_emergency │ │ │ │ │ │ ├── temp2_input │ │ │ │ │ │ ├── temp2_label │ │ │ │ │ │ ├── temp3_crit │ │ │ │ │ │ ├── temp3_crit_hyst │ │ │ │ │ │ ├── temp3_emergency │ │ │ │ │ │ ├── temp3_input │ │ │ │ │ │ └── temp3_label │ │ │ │ │ ├── pp_cur_state │ │ │ │ │ ├── pp_dpm_mclk │ │ │ │ │ ├── pp_dpm_pcie │ │ │ │ │ ├── pp_dpm_sclk │ │ │ │ │ ├── pp_dpm_socclk │ │ │ │ │ ├── pp_features │ │ │ │ │ ├── pp_force_state │ │ │ │ │ ├── pp_num_states │ │ │ │ │ ├── pp_od_clk_voltage │ │ │ │ │ ├── pp_power_profile_mode │ │ │ │ │ ├── pp_table │ │ │ │ │ ├── uevent │ │ │ │ │ ├── vbios_version │ │ │ │ │ └── vendor │ │ │ ├── rx580 │ │ │ │ ├── ari_enabled │ │ │ │ ├── boot_vga │ │ │ │ ├── broken_parity_status │ │ │ │ ├── card0 │ │ │ │ │ └── device │ │ │ │ │ │ ├── dma_mask_bits │ │ │ │ │ │ ├── driver_override │ │ │ │ │ │ ├── enable │ │ │ │ │ │ ├── gpu_busy_percent │ │ │ │ │ │ ├── hwmon │ │ │ │ │ │ └── hwmon4 │ │ │ │ │ │ │ ├── fan1_enable │ │ │ │ │ │ │ ├── fan1_input │ │ │ │ │ │ │ ├── fan1_max │ │ │ │ │ │ │ ├── fan1_min │ │ │ │ │ │ │ ├── fan1_target │ │ │ │ │ │ │ ├── freq1_input │ │ │ │ │ │ │ ├── freq1_label │ │ │ │ │ │ │ ├── freq2_input │ │ │ │ │ │ │ ├── freq2_label │ │ │ │ │ │ │ ├── in0_input │ │ │ │ │ │ │ ├── in0_label │ │ │ │ │ │ │ ├── name │ │ │ │ │ │ │ ├── power1_average │ │ │ │ │ │ │ ├── power1_cap │ │ │ │ │ │ │ ├── power1_cap_default │ │ │ │ │ │ │ ├── power1_cap_max │ │ │ │ │ │ │ ├── power1_cap_min │ │ │ │ │ │ │ ├── power1_label │ │ │ │ │ │ │ ├── pwm1 │ │ │ │ │ │ │ ├── pwm1_enable │ │ │ │ │ │ │ ├── pwm1_max │ │ │ │ │ │ │ ├── pwm1_min │ │ │ │ │ │ │ ├── temp1_crit │ │ │ │ │ │ │ ├── temp1_crit_hyst │ │ │ │ │ │ │ ├── temp1_input │ │ │ │ │ │ │ ├── temp1_label │ │ │ │ │ │ │ └── uevent │ │ │ │ │ │ ├── local_cpulist │ │ │ │ │ │ ├── local_cpus │ │ │ │ │ │ ├── max_link_speed │ │ │ │ │ │ ├── max_link_width │ │ │ │ │ │ ├── mem_busy_percent │ │ │ │ │ │ ├── mem_info_gtt_total │ │ │ │ │ │ ├── mem_info_gtt_used │ │ │ │ │ │ ├── mem_info_preempt_used │ │ │ │ │ │ ├── mem_info_vis_vram_total │ │ │ │ │ │ ├── mem_info_vis_vram_used │ │ │ │ │ │ ├── mem_info_vram_total │ │ │ │ │ │ ├── mem_info_vram_used │ │ │ │ │ │ ├── mem_info_vram_vendor │ │ │ │ │ │ ├── modalias │ │ │ │ │ │ ├── numa_node │ │ │ │ │ │ ├── pcie_bw │ │ │ │ │ │ ├── pcie_replay_count │ │ │ │ │ │ ├── power_dpm_force_performance_level │ │ │ │ │ │ ├── power_dpm_state │ │ │ │ │ │ ├── power_state │ │ │ │ │ │ ├── pp_cur_state │ │ │ │ │ │ ├── pp_dpm_mclk │ │ │ │ │ │ ├── pp_dpm_pcie │ │ │ │ │ │ ├── pp_dpm_sclk │ │ │ │ │ │ ├── pp_force_state │ │ │ │ │ │ ├── pp_mclk_od │ │ │ │ │ │ ├── pp_num_states │ │ │ │ │ │ ├── pp_od_clk_voltage │ │ │ │ │ │ ├── pp_power_profile_mode │ │ │ │ │ │ ├── pp_sclk_od │ │ │ │ │ │ ├── pp_table │ │ │ │ │ │ ├── product_name │ │ │ │ │ │ ├── product_number │ │ │ │ │ │ ├── reset_method │ │ │ │ │ │ ├── resource │ │ │ │ │ │ ├── revision │ │ │ │ │ │ ├── serial_number │ │ │ │ │ │ ├── subsystem_device │ │ │ │ │ │ ├── subsystem_vendor │ │ │ │ │ │ ├── uevent │ │ │ │ │ │ ├── vbios_version │ │ │ │ │ │ └── vendor │ │ │ │ ├── class │ │ │ │ ├── consistent_dma_mask_bits │ │ │ │ ├── current_link_speed │ │ │ │ ├── current_link_width │ │ │ │ ├── d3cold_allowed │ │ │ │ └── device │ │ │ ├── rx6600 │ │ │ │ └── card1 │ │ │ │ │ ├── dev │ │ │ │ │ ├── device │ │ │ │ │ ├── current_link_speed │ │ │ │ │ ├── current_link_width │ │ │ │ │ ├── gpu_busy_percent │ │ │ │ │ ├── hwmon │ │ │ │ │ │ └── hwmon4 │ │ │ │ │ │ │ ├── fan1_enable │ │ │ │ │ │ │ ├── fan1_input │ │ │ │ │ │ │ ├── fan1_max │ │ │ │ │ │ │ ├── fan1_min │ │ │ │ │ │ │ ├── fan1_target │ │ │ │ │ │ │ ├── freq1_input │ │ │ │ │ │ │ ├── freq1_label │ │ │ │ │ │ │ ├── freq2_input │ │ │ │ │ │ │ ├── freq2_label │ │ │ │ │ │ │ ├── in0_input │ │ │ │ │ │ │ ├── in0_label │ │ │ │ │ │ │ ├── name │ │ │ │ │ │ │ ├── power │ │ │ │ │ │ │ ├── control │ │ │ │ │ │ │ ├── runtime_active_time │ │ │ │ │ │ │ ├── runtime_status │ │ │ │ │ │ │ └── runtime_suspended_time │ │ │ │ │ │ │ ├── power1_average │ │ │ │ │ │ │ ├── power1_cap │ │ │ │ │ │ │ ├── power1_cap_default │ │ │ │ │ │ │ ├── power1_cap_max │ │ │ │ │ │ │ ├── power1_cap_min │ │ │ │ │ │ │ ├── power1_label │ │ │ │ │ │ │ ├── pwm1 │ │ │ │ │ │ │ ├── pwm1_enable │ │ │ │ │ │ │ ├── pwm1_max │ │ │ │ │ │ │ ├── pwm1_min │ │ │ │ │ │ │ ├── temp1_crit │ │ │ │ │ │ │ ├── temp1_crit_hyst │ │ │ │ │ │ │ ├── temp1_emergency │ │ │ │ │ │ │ ├── temp1_input │ │ │ │ │ │ │ ├── temp1_label │ │ │ │ │ │ │ ├── temp2_crit │ │ │ │ │ │ │ ├── temp2_crit_hyst │ │ │ │ │ │ │ ├── temp2_emergency │ │ │ │ │ │ │ ├── temp2_input │ │ │ │ │ │ │ ├── temp2_label │ │ │ │ │ │ │ ├── temp3_crit │ │ │ │ │ │ │ ├── temp3_crit_hyst │ │ │ │ │ │ │ ├── temp3_emergency │ │ │ │ │ │ │ ├── temp3_input │ │ │ │ │ │ │ ├── temp3_label │ │ │ │ │ │ │ └── uevent │ │ │ │ │ ├── pp_cur_state │ │ │ │ │ ├── pp_dpm_mclk │ │ │ │ │ ├── pp_dpm_pcie │ │ │ │ │ ├── pp_dpm_sclk │ │ │ │ │ ├── pp_dpm_socclk │ │ │ │ │ ├── pp_features │ │ │ │ │ ├── pp_force_state │ │ │ │ │ ├── pp_num_states │ │ │ │ │ ├── pp_od_clk_voltage │ │ │ │ │ ├── pp_power_profile_mode │ │ │ │ │ ├── pp_table │ │ │ │ │ ├── uevent │ │ │ │ │ ├── vbios_version │ │ │ │ │ └── vendor │ │ │ │ │ └── uevent │ │ │ ├── rx6600xt │ │ │ │ └── card0 │ │ │ │ │ └── device │ │ │ │ │ ├── current_link_speed │ │ │ │ │ ├── current_link_width │ │ │ │ │ ├── gpu_busy_percent │ │ │ │ │ ├── hwmon │ │ │ │ │ └── hwmon4 │ │ │ │ │ │ ├── fan1_enable │ │ │ │ │ │ ├── fan1_input │ │ │ │ │ │ ├── fan1_max │ │ │ │ │ │ ├── fan1_min │ │ │ │ │ │ ├── fan1_target │ │ │ │ │ │ ├── freq1_input │ │ │ │ │ │ ├── freq1_label │ │ │ │ │ │ ├── freq2_input │ │ │ │ │ │ ├── freq2_label │ │ │ │ │ │ ├── in0_input │ │ │ │ │ │ ├── in0_label │ │ │ │ │ │ ├── name │ │ │ │ │ │ ├── power1_average │ │ │ │ │ │ ├── power1_cap │ │ │ │ │ │ ├── power1_cap_default │ │ │ │ │ │ ├── power1_cap_max │ │ │ │ │ │ ├── power1_cap_min │ │ │ │ │ │ ├── power1_label │ │ │ │ │ │ ├── pwm1 │ │ │ │ │ │ ├── pwm1_enable │ │ │ │ │ │ ├── pwm1_max │ │ │ │ │ │ ├── pwm1_min │ │ │ │ │ │ ├── temp1_crit │ │ │ │ │ │ ├── temp1_crit_hyst │ │ │ │ │ │ ├── temp1_emergency │ │ │ │ │ │ ├── temp1_input │ │ │ │ │ │ ├── temp1_label │ │ │ │ │ │ ├── temp2_crit │ │ │ │ │ │ ├── temp2_crit_hyst │ │ │ │ │ │ ├── temp2_emergency │ │ │ │ │ │ ├── temp2_input │ │ │ │ │ │ ├── temp2_label │ │ │ │ │ │ ├── temp3_crit │ │ │ │ │ │ ├── temp3_crit_hyst │ │ │ │ │ │ ├── temp3_emergency │ │ │ │ │ │ ├── temp3_input │ │ │ │ │ │ └── temp3_label │ │ │ │ │ ├── pp_cur_state │ │ │ │ │ ├── pp_dpm_mclk │ │ │ │ │ ├── pp_dpm_pcie │ │ │ │ │ ├── pp_dpm_sclk │ │ │ │ │ ├── pp_dpm_socclk │ │ │ │ │ ├── pp_features │ │ │ │ │ ├── pp_force_state │ │ │ │ │ ├── pp_num_states │ │ │ │ │ ├── pp_power_profile_mode │ │ │ │ │ ├── pp_table │ │ │ │ │ ├── uevent │ │ │ │ │ ├── vbios_version │ │ │ │ │ └── vendor │ │ │ ├── rx6900xt │ │ │ │ ├── card0 │ │ │ │ │ └── device │ │ │ │ │ │ ├── aer_dev_correctable │ │ │ │ │ │ ├── aer_dev_fatal │ │ │ │ │ │ ├── aer_dev_nonfatal │ │ │ │ │ │ ├── ari_enabled │ │ │ │ │ │ ├── boot_vga │ │ │ │ │ │ ├── broken_parity_status │ │ │ │ │ │ ├── class │ │ │ │ │ │ ├── config │ │ │ │ │ │ ├── consistent_dma_mask_bits │ │ │ │ │ │ ├── current_link_speed │ │ │ │ │ │ ├── current_link_width │ │ │ │ │ │ ├── d3cold_allowed │ │ │ │ │ │ ├── dma_mask_bits │ │ │ │ │ │ ├── driver_override │ │ │ │ │ │ ├── enable │ │ │ │ │ │ ├── fw_version │ │ │ │ │ │ ├── asd_fw_version │ │ │ │ │ │ ├── ce_fw_version │ │ │ │ │ │ ├── dmcu_fw_version │ │ │ │ │ │ ├── imu_fw_version │ │ │ │ │ │ ├── mc_fw_version │ │ │ │ │ │ ├── me_fw_version │ │ │ │ │ │ ├── mec2_fw_version │ │ │ │ │ │ ├── mec_fw_version │ │ │ │ │ │ ├── pfp_fw_version │ │ │ │ │ │ ├── rlc_fw_version │ │ │ │ │ │ ├── rlc_srlc_fw_version │ │ │ │ │ │ ├── rlc_srlg_fw_version │ │ │ │ │ │ ├── rlc_srls_fw_version │ │ │ │ │ │ ├── sdma2_fw_version │ │ │ │ │ │ ├── sdma_fw_version │ │ │ │ │ │ ├── smc_fw_version │ │ │ │ │ │ ├── sos_fw_version │ │ │ │ │ │ ├── ta_ras_fw_version │ │ │ │ │ │ ├── ta_xgmi_fw_version │ │ │ │ │ │ ├── uvd_fw_version │ │ │ │ │ │ ├── vce_fw_version │ │ │ │ │ │ └── vcn_fw_version │ │ │ │ │ │ ├── gpu_busy_percent │ │ │ │ │ │ ├── gpu_metrics │ │ │ │ │ │ ├── hdcp_srm │ │ │ │ │ │ ├── hwmon │ │ │ │ │ │ └── hwmon5 │ │ │ │ │ │ │ ├── fan1_enable │ │ │ │ │ │ │ ├── fan1_input │ │ │ │ │ │ │ ├── fan1_max │ │ │ │ │ │ │ ├── fan1_min │ │ │ │ │ │ │ ├── fan1_target │ │ │ │ │ │ │ ├── freq1_input │ │ │ │ │ │ │ ├── freq1_label │ │ │ │ │ │ │ ├── freq2_input │ │ │ │ │ │ │ ├── freq2_label │ │ │ │ │ │ │ ├── in0_input │ │ │ │ │ │ │ ├── in0_label │ │ │ │ │ │ │ ├── name │ │ │ │ │ │ │ ├── power │ │ │ │ │ │ │ ├── autosuspend_delay_ms │ │ │ │ │ │ │ ├── control │ │ │ │ │ │ │ ├── runtime_active_time │ │ │ │ │ │ │ ├── runtime_status │ │ │ │ │ │ │ └── runtime_suspended_time │ │ │ │ │ │ │ ├── power1_average │ │ │ │ │ │ │ ├── power1_cap │ │ │ │ │ │ │ ├── power1_cap_default │ │ │ │ │ │ │ ├── power1_cap_max │ │ │ │ │ │ │ ├── power1_cap_min │ │ │ │ │ │ │ ├── power1_label │ │ │ │ │ │ │ ├── pwm1 │ │ │ │ │ │ │ ├── pwm1_enable │ │ │ │ │ │ │ ├── pwm1_max │ │ │ │ │ │ │ ├── pwm1_min │ │ │ │ │ │ │ ├── temp1_crit │ │ │ │ │ │ │ ├── temp1_crit_hyst │ │ │ │ │ │ │ ├── temp1_emergency │ │ │ │ │ │ │ ├── temp1_input │ │ │ │ │ │ │ ├── temp1_label │ │ │ │ │ │ │ ├── temp2_crit │ │ │ │ │ │ │ ├── temp2_crit_hyst │ │ │ │ │ │ │ ├── temp2_emergency │ │ │ │ │ │ │ ├── temp2_input │ │ │ │ │ │ │ ├── temp2_label │ │ │ │ │ │ │ ├── temp3_crit │ │ │ │ │ │ │ ├── temp3_crit_hyst │ │ │ │ │ │ │ ├── temp3_emergency │ │ │ │ │ │ │ ├── temp3_input │ │ │ │ │ │ │ ├── temp3_label │ │ │ │ │ │ │ └── uevent │ │ │ │ │ │ ├── irq │ │ │ │ │ │ ├── link │ │ │ │ │ │ ├── clkpm │ │ │ │ │ │ ├── l0s_aspm │ │ │ │ │ │ └── l1_aspm │ │ │ │ │ │ ├── local_cpulist │ │ │ │ │ │ ├── local_cpus │ │ │ │ │ │ ├── max_link_speed │ │ │ │ │ │ ├── max_link_width │ │ │ │ │ │ ├── mem_busy_percent │ │ │ │ │ │ ├── mem_info_gtt_total │ │ │ │ │ │ ├── mem_info_gtt_used │ │ │ │ │ │ ├── mem_info_preempt_used │ │ │ │ │ │ ├── mem_info_vis_vram_total │ │ │ │ │ │ ├── mem_info_vis_vram_used │ │ │ │ │ │ ├── mem_info_vram_total │ │ │ │ │ │ ├── mem_info_vram_used │ │ │ │ │ │ ├── mem_info_vram_vendor │ │ │ │ │ │ ├── modalias │ │ │ │ │ │ ├── msi_bus │ │ │ │ │ │ ├── msi_irqs │ │ │ │ │ │ └── 157 │ │ │ │ │ │ ├── numa_node │ │ │ │ │ │ ├── pcie_bw │ │ │ │ │ │ ├── pcie_replay_count │ │ │ │ │ │ ├── power │ │ │ │ │ │ ├── autosuspend_delay_ms │ │ │ │ │ │ ├── control │ │ │ │ │ │ ├── runtime_active_time │ │ │ │ │ │ ├── runtime_status │ │ │ │ │ │ ├── runtime_suspended_time │ │ │ │ │ │ ├── wakeup │ │ │ │ │ │ ├── wakeup_abort_count │ │ │ │ │ │ ├── wakeup_active │ │ │ │ │ │ ├── wakeup_active_count │ │ │ │ │ │ ├── wakeup_count │ │ │ │ │ │ ├── wakeup_expire_count │ │ │ │ │ │ ├── wakeup_last_time_ms │ │ │ │ │ │ ├── wakeup_max_time_ms │ │ │ │ │ │ └── wakeup_total_time_ms │ │ │ │ │ │ ├── power_dpm_force_performance_level │ │ │ │ │ │ ├── power_dpm_state │ │ │ │ │ │ ├── power_state │ │ │ │ │ │ ├── pp_cur_state │ │ │ │ │ │ ├── pp_dpm_dcefclk │ │ │ │ │ │ ├── pp_dpm_dclk │ │ │ │ │ │ ├── pp_dpm_fclk │ │ │ │ │ │ ├── pp_dpm_mclk │ │ │ │ │ │ ├── pp_dpm_pcie │ │ │ │ │ │ ├── pp_dpm_sclk │ │ │ │ │ │ ├── pp_dpm_socclk │ │ │ │ │ │ ├── pp_dpm_vclk │ │ │ │ │ │ ├── pp_features │ │ │ │ │ │ ├── pp_force_state │ │ │ │ │ │ ├── pp_mclk_od │ │ │ │ │ │ ├── pp_num_states │ │ │ │ │ │ ├── pp_od_clk_voltage │ │ │ │ │ │ ├── pp_power_profile_mode │ │ │ │ │ │ ├── pp_sclk_od │ │ │ │ │ │ ├── pp_table │ │ │ │ │ │ ├── product_name │ │ │ │ │ │ ├── product_number │ │ │ │ │ │ ├── reset_method │ │ │ │ │ │ ├── resource │ │ │ │ │ │ ├── resource0_resize │ │ │ │ │ │ ├── resource2_resize │ │ │ │ │ │ ├── revision │ │ │ │ │ │ ├── subsystem_device │ │ │ │ │ │ ├── subsystem_vendor │ │ │ │ │ │ ├── thermal_throttling_logging │ │ │ │ │ │ ├── uevent │ │ │ │ │ │ ├── unique_id │ │ │ │ │ │ ├── usbc_pd_fw │ │ │ │ │ │ ├── vbios_version │ │ │ │ │ │ └── vendor │ │ │ │ └── config.yaml │ │ │ ├── rx7600s │ │ │ │ └── card1 │ │ │ │ │ ├── dev │ │ │ │ │ ├── device │ │ │ │ │ ├── current_link_speed │ │ │ │ │ ├── current_link_width │ │ │ │ │ ├── gpu_busy_percent │ │ │ │ │ ├── gpu_metrics │ │ │ │ │ ├── hwmon │ │ │ │ │ │ └── hwmon5 │ │ │ │ │ │ │ ├── fan1_enable │ │ │ │ │ │ │ ├── fan1_input │ │ │ │ │ │ │ ├── fan1_max │ │ │ │ │ │ │ ├── fan1_min │ │ │ │ │ │ │ ├── fan1_target │ │ │ │ │ │ │ ├── freq1_input │ │ │ │ │ │ │ ├── freq1_label │ │ │ │ │ │ │ ├── freq2_input │ │ │ │ │ │ │ ├── freq2_label │ │ │ │ │ │ │ ├── in0_input │ │ │ │ │ │ │ ├── in0_label │ │ │ │ │ │ │ ├── name │ │ │ │ │ │ │ ├── power │ │ │ │ │ │ │ ├── control │ │ │ │ │ │ │ ├── runtime_active_time │ │ │ │ │ │ │ ├── runtime_status │ │ │ │ │ │ │ └── runtime_suspended_time │ │ │ │ │ │ │ ├── power1_average │ │ │ │ │ │ │ ├── power1_cap │ │ │ │ │ │ │ ├── power1_cap_default │ │ │ │ │ │ │ ├── power1_cap_max │ │ │ │ │ │ │ ├── power1_cap_min │ │ │ │ │ │ │ ├── power1_label │ │ │ │ │ │ │ ├── pwm1 │ │ │ │ │ │ │ ├── pwm1_enable │ │ │ │ │ │ │ ├── pwm1_max │ │ │ │ │ │ │ ├── pwm1_min │ │ │ │ │ │ │ ├── temp1_crit │ │ │ │ │ │ │ ├── temp1_crit_hyst │ │ │ │ │ │ │ ├── temp1_emergency │ │ │ │ │ │ │ ├── temp1_input │ │ │ │ │ │ │ ├── temp1_label │ │ │ │ │ │ │ ├── temp2_crit │ │ │ │ │ │ │ ├── temp2_crit_hyst │ │ │ │ │ │ │ ├── temp2_emergency │ │ │ │ │ │ │ ├── temp2_input │ │ │ │ │ │ │ ├── temp2_label │ │ │ │ │ │ │ ├── temp3_crit │ │ │ │ │ │ │ ├── temp3_crit_hyst │ │ │ │ │ │ │ ├── temp3_emergency │ │ │ │ │ │ │ ├── temp3_input │ │ │ │ │ │ │ ├── temp3_label │ │ │ │ │ │ │ └── uevent │ │ │ │ │ ├── mem_info_vram_vendor │ │ │ │ │ ├── power_dpm_force_performance_level │ │ │ │ │ ├── pp_cur_state │ │ │ │ │ ├── pp_dpm_mclk │ │ │ │ │ ├── pp_dpm_pcie │ │ │ │ │ ├── pp_dpm_sclk │ │ │ │ │ ├── pp_dpm_socclk │ │ │ │ │ ├── pp_features │ │ │ │ │ ├── pp_force_state │ │ │ │ │ ├── pp_num_states │ │ │ │ │ ├── pp_power_profile_mode │ │ │ │ │ ├── pp_table │ │ │ │ │ ├── uevent │ │ │ │ │ ├── vbios_version │ │ │ │ │ └── vendor │ │ │ │ │ └── uevent │ │ │ ├── rx7700s │ │ │ │ └── card1 │ │ │ │ │ └── device │ │ │ │ │ ├── current_link_speed │ │ │ │ │ ├── current_link_width │ │ │ │ │ ├── gpu_busy_percent │ │ │ │ │ ├── hwmon │ │ │ │ │ └── hwmon9 │ │ │ │ │ │ ├── fan1_enable │ │ │ │ │ │ ├── fan1_input │ │ │ │ │ │ ├── fan1_max │ │ │ │ │ │ ├── fan1_min │ │ │ │ │ │ ├── fan1_target │ │ │ │ │ │ ├── freq1_input │ │ │ │ │ │ ├── freq1_label │ │ │ │ │ │ ├── freq2_input │ │ │ │ │ │ ├── freq2_label │ │ │ │ │ │ ├── in0_input │ │ │ │ │ │ ├── in0_label │ │ │ │ │ │ ├── name │ │ │ │ │ │ ├── power1_average │ │ │ │ │ │ ├── power1_cap │ │ │ │ │ │ ├── power1_cap_default │ │ │ │ │ │ ├── power1_cap_max │ │ │ │ │ │ ├── power1_cap_min │ │ │ │ │ │ ├── power1_label │ │ │ │ │ │ ├── pwm1 │ │ │ │ │ │ ├── pwm1_enable │ │ │ │ │ │ ├── pwm1_max │ │ │ │ │ │ ├── pwm1_min │ │ │ │ │ │ ├── temp1_crit │ │ │ │ │ │ ├── temp1_crit_hyst │ │ │ │ │ │ ├── temp1_emergency │ │ │ │ │ │ ├── temp1_input │ │ │ │ │ │ ├── temp1_label │ │ │ │ │ │ ├── temp2_crit │ │ │ │ │ │ ├── temp2_crit_hyst │ │ │ │ │ │ ├── temp2_emergency │ │ │ │ │ │ ├── temp2_input │ │ │ │ │ │ ├── temp2_label │ │ │ │ │ │ ├── temp3_crit │ │ │ │ │ │ ├── temp3_crit_hyst │ │ │ │ │ │ ├── temp3_emergency │ │ │ │ │ │ ├── temp3_input │ │ │ │ │ │ └── temp3_label │ │ │ │ │ ├── power_dpm_force_performance_level │ │ │ │ │ ├── pp_cur_state │ │ │ │ │ ├── pp_dpm_mclk │ │ │ │ │ ├── pp_dpm_pcie │ │ │ │ │ ├── pp_dpm_sclk │ │ │ │ │ ├── pp_dpm_socclk │ │ │ │ │ ├── pp_features │ │ │ │ │ ├── pp_force_state │ │ │ │ │ ├── pp_num_states │ │ │ │ │ ├── pp_od_clk_voltage │ │ │ │ │ ├── pp_power_profile_mode │ │ │ │ │ ├── pp_table │ │ │ │ │ ├── uevent │ │ │ │ │ ├── vbios_version │ │ │ │ │ └── vendor │ │ │ ├── rx7800xt │ │ │ │ ├── card1 │ │ │ │ │ ├── dev │ │ │ │ │ ├── device │ │ │ │ │ │ ├── current_link_speed │ │ │ │ │ │ ├── current_link_width │ │ │ │ │ │ ├── gpu_busy_percent │ │ │ │ │ │ ├── gpu_metrics │ │ │ │ │ │ ├── gpu_od │ │ │ │ │ │ │ └── fan_ctrl │ │ │ │ │ │ │ │ ├── acoustic_limit_rpm_threshold │ │ │ │ │ │ │ │ ├── acoustic_target_rpm_threshold │ │ │ │ │ │ │ │ ├── fan_curve │ │ │ │ │ │ │ │ ├── fan_minimum_pwm │ │ │ │ │ │ │ │ ├── fan_target_temperature │ │ │ │ │ │ │ │ ├── fan_zero_rpm_enable │ │ │ │ │ │ │ │ └── fan_zero_rpm_stop_temperature │ │ │ │ │ │ ├── hwmon │ │ │ │ │ │ │ └── hwmon4 │ │ │ │ │ │ │ │ ├── fan1_enable │ │ │ │ │ │ │ │ ├── fan1_input │ │ │ │ │ │ │ │ ├── fan1_max │ │ │ │ │ │ │ │ ├── fan1_min │ │ │ │ │ │ │ │ ├── fan1_target │ │ │ │ │ │ │ │ ├── freq1_input │ │ │ │ │ │ │ │ ├── freq1_label │ │ │ │ │ │ │ │ ├── freq2_input │ │ │ │ │ │ │ │ ├── freq2_label │ │ │ │ │ │ │ │ ├── in0_input │ │ │ │ │ │ │ │ ├── in0_label │ │ │ │ │ │ │ │ ├── name │ │ │ │ │ │ │ │ ├── power │ │ │ │ │ │ │ │ ├── control │ │ │ │ │ │ │ │ ├── runtime_active_time │ │ │ │ │ │ │ │ ├── runtime_status │ │ │ │ │ │ │ │ └── runtime_suspended_time │ │ │ │ │ │ │ │ ├── power1_average │ │ │ │ │ │ │ │ ├── power1_cap │ │ │ │ │ │ │ │ ├── power1_cap_default │ │ │ │ │ │ │ │ ├── power1_cap_max │ │ │ │ │ │ │ │ ├── power1_cap_min │ │ │ │ │ │ │ │ ├── power1_label │ │ │ │ │ │ │ │ ├── pwm1 │ │ │ │ │ │ │ │ ├── pwm1_enable │ │ │ │ │ │ │ │ ├── pwm1_max │ │ │ │ │ │ │ │ ├── pwm1_min │ │ │ │ │ │ │ │ ├── temp1_crit │ │ │ │ │ │ │ │ ├── temp1_crit_hyst │ │ │ │ │ │ │ │ ├── temp1_emergency │ │ │ │ │ │ │ │ ├── temp1_input │ │ │ │ │ │ │ │ ├── temp1_label │ │ │ │ │ │ │ │ ├── temp2_crit │ │ │ │ │ │ │ │ ├── temp2_crit_hyst │ │ │ │ │ │ │ │ ├── temp2_emergency │ │ │ │ │ │ │ │ ├── temp2_input │ │ │ │ │ │ │ │ ├── temp2_label │ │ │ │ │ │ │ │ ├── temp3_crit │ │ │ │ │ │ │ │ ├── temp3_crit_hyst │ │ │ │ │ │ │ │ ├── temp3_emergency │ │ │ │ │ │ │ │ ├── temp3_input │ │ │ │ │ │ │ │ ├── temp3_label │ │ │ │ │ │ │ │ └── uevent │ │ │ │ │ │ ├── mem_info_vram_vendor │ │ │ │ │ │ ├── power_dpm_force_performance_level │ │ │ │ │ │ ├── pp_cur_state │ │ │ │ │ │ ├── pp_dpm_mclk │ │ │ │ │ │ ├── pp_dpm_pcie │ │ │ │ │ │ ├── pp_dpm_sclk │ │ │ │ │ │ ├── pp_dpm_socclk │ │ │ │ │ │ ├── pp_features │ │ │ │ │ │ ├── pp_force_state │ │ │ │ │ │ ├── pp_num_states │ │ │ │ │ │ ├── pp_od_clk_voltage │ │ │ │ │ │ ├── pp_power_profile_mode │ │ │ │ │ │ ├── pp_table │ │ │ │ │ │ ├── uevent │ │ │ │ │ │ ├── vbios_version │ │ │ │ │ │ └── vendor │ │ │ │ │ └── uevent │ │ │ │ └── config.yaml │ │ │ ├── rx7900xtx │ │ │ │ ├── card0 │ │ │ │ │ └── device │ │ │ │ │ │ ├── current_link_speed │ │ │ │ │ │ ├── current_link_width │ │ │ │ │ │ ├── gpu_busy_percent │ │ │ │ │ │ ├── gpu_od │ │ │ │ │ │ └── fan_ctrl │ │ │ │ │ │ │ ├── acoustic_limit_rpm_threshold │ │ │ │ │ │ │ ├── acoustic_target_rpm_threshold │ │ │ │ │ │ │ ├── fan_curve │ │ │ │ │ │ │ ├── fan_minimum_pwm │ │ │ │ │ │ │ └── fan_target_temperature │ │ │ │ │ │ ├── hwmon │ │ │ │ │ │ └── hwmon8 │ │ │ │ │ │ │ ├── fan1_enable │ │ │ │ │ │ │ ├── fan1_input │ │ │ │ │ │ │ ├── fan1_max │ │ │ │ │ │ │ ├── fan1_min │ │ │ │ │ │ │ ├── fan1_target │ │ │ │ │ │ │ ├── freq1_input │ │ │ │ │ │ │ ├── freq1_label │ │ │ │ │ │ │ ├── freq2_input │ │ │ │ │ │ │ ├── freq2_label │ │ │ │ │ │ │ ├── in0_input │ │ │ │ │ │ │ ├── in0_label │ │ │ │ │ │ │ ├── name │ │ │ │ │ │ │ ├── power1_average │ │ │ │ │ │ │ ├── power1_cap │ │ │ │ │ │ │ ├── power1_cap_default │ │ │ │ │ │ │ ├── power1_cap_max │ │ │ │ │ │ │ ├── power1_cap_min │ │ │ │ │ │ │ ├── power1_label │ │ │ │ │ │ │ ├── pwm1 │ │ │ │ │ │ │ ├── pwm1_enable │ │ │ │ │ │ │ ├── pwm1_max │ │ │ │ │ │ │ ├── pwm1_min │ │ │ │ │ │ │ ├── temp1_crit │ │ │ │ │ │ │ ├── temp1_crit_hyst │ │ │ │ │ │ │ ├── temp1_emergency │ │ │ │ │ │ │ ├── temp1_input │ │ │ │ │ │ │ ├── temp1_label │ │ │ │ │ │ │ ├── temp2_crit │ │ │ │ │ │ │ ├── temp2_crit_hyst │ │ │ │ │ │ │ ├── temp2_emergency │ │ │ │ │ │ │ ├── temp2_input │ │ │ │ │ │ │ ├── temp2_label │ │ │ │ │ │ │ ├── temp3_crit │ │ │ │ │ │ │ ├── temp3_crit_hyst │ │ │ │ │ │ │ ├── temp3_emergency │ │ │ │ │ │ │ ├── temp3_input │ │ │ │ │ │ │ └── temp3_label │ │ │ │ │ │ ├── power_dpm_force_performance_level │ │ │ │ │ │ ├── pp_cur_state │ │ │ │ │ │ ├── pp_dpm_mclk │ │ │ │ │ │ ├── pp_dpm_pcie │ │ │ │ │ │ ├── pp_dpm_sclk │ │ │ │ │ │ ├── pp_dpm_socclk │ │ │ │ │ │ ├── pp_features │ │ │ │ │ │ ├── pp_force_state │ │ │ │ │ │ ├── pp_num_states │ │ │ │ │ │ ├── pp_od_clk_voltage │ │ │ │ │ │ ├── pp_power_profile_mode │ │ │ │ │ │ ├── pp_table │ │ │ │ │ │ ├── uevent │ │ │ │ │ │ ├── vbios_version │ │ │ │ │ │ └── vendor │ │ │ │ └── config.yaml │ │ │ ├── rx9070 │ │ │ │ ├── card1 │ │ │ │ │ ├── dev │ │ │ │ │ ├── device │ │ │ │ │ │ ├── current_link_speed │ │ │ │ │ │ ├── current_link_width │ │ │ │ │ │ ├── gpu_busy_percent │ │ │ │ │ │ ├── gpu_metrics │ │ │ │ │ │ ├── gpu_od │ │ │ │ │ │ │ └── fan_ctrl │ │ │ │ │ │ │ │ ├── acoustic_limit_rpm_threshold │ │ │ │ │ │ │ │ ├── acoustic_target_rpm_threshold │ │ │ │ │ │ │ │ ├── fan_curve │ │ │ │ │ │ │ │ ├── fan_minimum_pwm │ │ │ │ │ │ │ │ ├── fan_target_temperature │ │ │ │ │ │ │ │ └── fan_zero_rpm_enable │ │ │ │ │ │ ├── hwmon │ │ │ │ │ │ │ └── hwmon2 │ │ │ │ │ │ │ │ ├── fan1_input │ │ │ │ │ │ │ │ ├── fan1_max │ │ │ │ │ │ │ │ ├── fan1_min │ │ │ │ │ │ │ │ ├── fan1_target │ │ │ │ │ │ │ │ ├── freq1_input │ │ │ │ │ │ │ │ ├── freq1_label │ │ │ │ │ │ │ │ ├── freq2_input │ │ │ │ │ │ │ │ ├── freq2_label │ │ │ │ │ │ │ │ ├── in0_input │ │ │ │ │ │ │ │ ├── in0_label │ │ │ │ │ │ │ │ ├── name │ │ │ │ │ │ │ │ ├── power │ │ │ │ │ │ │ │ ├── control │ │ │ │ │ │ │ │ ├── runtime_active_time │ │ │ │ │ │ │ │ ├── runtime_status │ │ │ │ │ │ │ │ └── runtime_suspended_time │ │ │ │ │ │ │ │ ├── power1_average │ │ │ │ │ │ │ │ ├── power1_cap │ │ │ │ │ │ │ │ ├── power1_cap_default │ │ │ │ │ │ │ │ ├── power1_cap_max │ │ │ │ │ │ │ │ ├── power1_cap_min │ │ │ │ │ │ │ │ ├── power1_label │ │ │ │ │ │ │ │ ├── pwm1 │ │ │ │ │ │ │ │ ├── pwm1_max │ │ │ │ │ │ │ │ ├── pwm1_min │ │ │ │ │ │ │ │ ├── temp1_crit │ │ │ │ │ │ │ │ ├── temp1_crit_hyst │ │ │ │ │ │ │ │ ├── temp1_emergency │ │ │ │ │ │ │ │ ├── temp1_input │ │ │ │ │ │ │ │ ├── temp1_label │ │ │ │ │ │ │ │ ├── temp2_crit │ │ │ │ │ │ │ │ ├── temp2_crit_hyst │ │ │ │ │ │ │ │ ├── temp2_emergency │ │ │ │ │ │ │ │ ├── temp2_input │ │ │ │ │ │ │ │ ├── temp2_label │ │ │ │ │ │ │ │ ├── temp3_crit │ │ │ │ │ │ │ │ ├── temp3_crit_hyst │ │ │ │ │ │ │ │ ├── temp3_emergency │ │ │ │ │ │ │ │ ├── temp3_input │ │ │ │ │ │ │ │ ├── temp3_label │ │ │ │ │ │ │ │ └── uevent │ │ │ │ │ │ ├── mem_info_vram_vendor │ │ │ │ │ │ ├── power_dpm_force_performance_level │ │ │ │ │ │ ├── pp_cur_state │ │ │ │ │ │ ├── pp_dpm_mclk │ │ │ │ │ │ ├── pp_dpm_pcie │ │ │ │ │ │ ├── pp_dpm_sclk │ │ │ │ │ │ ├── pp_dpm_socclk │ │ │ │ │ │ ├── pp_features │ │ │ │ │ │ ├── pp_force_state │ │ │ │ │ │ ├── pp_num_states │ │ │ │ │ │ ├── pp_od_clk_voltage │ │ │ │ │ │ ├── pp_power_profile_mode │ │ │ │ │ │ ├── pp_table │ │ │ │ │ │ ├── uevent │ │ │ │ │ │ ├── vbios_version │ │ │ │ │ │ └── vendor │ │ │ │ │ └── uevent │ │ │ │ └── config.yaml │ │ │ ├── rx9070xt │ │ │ │ ├── card1 │ │ │ │ │ ├── dev │ │ │ │ │ ├── device │ │ │ │ │ │ ├── current_link_speed │ │ │ │ │ │ ├── current_link_width │ │ │ │ │ │ ├── gpu_busy_percent │ │ │ │ │ │ ├── gpu_od │ │ │ │ │ │ │ └── fan_ctrl │ │ │ │ │ │ │ │ ├── acoustic_limit_rpm_threshold │ │ │ │ │ │ │ │ ├── acoustic_target_rpm_threshold │ │ │ │ │ │ │ │ ├── fan_curve │ │ │ │ │ │ │ │ ├── fan_minimum_pwm │ │ │ │ │ │ │ │ ├── fan_target_temperature │ │ │ │ │ │ │ │ ├── fan_zero_rpm_enable │ │ │ │ │ │ │ │ └── fan_zero_rpm_stop_temperature │ │ │ │ │ │ ├── hwmon │ │ │ │ │ │ │ └── hwmon5 │ │ │ │ │ │ │ │ ├── fan1_input │ │ │ │ │ │ │ │ ├── fan1_max │ │ │ │ │ │ │ │ ├── fan1_min │ │ │ │ │ │ │ │ ├── fan1_target │ │ │ │ │ │ │ │ ├── freq1_input │ │ │ │ │ │ │ │ ├── freq1_label │ │ │ │ │ │ │ │ ├── freq2_input │ │ │ │ │ │ │ │ ├── freq2_label │ │ │ │ │ │ │ │ ├── in0_input │ │ │ │ │ │ │ │ ├── in0_label │ │ │ │ │ │ │ │ ├── name │ │ │ │ │ │ │ │ ├── power │ │ │ │ │ │ │ │ ├── control │ │ │ │ │ │ │ │ ├── runtime_active_time │ │ │ │ │ │ │ │ ├── runtime_status │ │ │ │ │ │ │ │ └── runtime_suspended_time │ │ │ │ │ │ │ │ ├── power1_average │ │ │ │ │ │ │ │ ├── power1_cap │ │ │ │ │ │ │ │ ├── power1_cap_default │ │ │ │ │ │ │ │ ├── power1_cap_max │ │ │ │ │ │ │ │ ├── power1_cap_min │ │ │ │ │ │ │ │ ├── power1_label │ │ │ │ │ │ │ │ ├── pwm1 │ │ │ │ │ │ │ │ ├── pwm1_max │ │ │ │ │ │ │ │ ├── pwm1_min │ │ │ │ │ │ │ │ ├── temp1_crit │ │ │ │ │ │ │ │ ├── temp1_crit_hyst │ │ │ │ │ │ │ │ ├── temp1_emergency │ │ │ │ │ │ │ │ ├── temp1_input │ │ │ │ │ │ │ │ ├── temp1_label │ │ │ │ │ │ │ │ ├── temp2_crit │ │ │ │ │ │ │ │ ├── temp2_crit_hyst │ │ │ │ │ │ │ │ ├── temp2_emergency │ │ │ │ │ │ │ │ ├── temp2_input │ │ │ │ │ │ │ │ ├── temp2_label │ │ │ │ │ │ │ │ ├── temp3_crit │ │ │ │ │ │ │ │ ├── temp3_crit_hyst │ │ │ │ │ │ │ │ ├── temp3_emergency │ │ │ │ │ │ │ │ ├── temp3_input │ │ │ │ │ │ │ │ ├── temp3_label │ │ │ │ │ │ │ │ └── uevent │ │ │ │ │ │ ├── power_dpm_force_performance_level │ │ │ │ │ │ ├── pp_cur_state │ │ │ │ │ │ ├── pp_dpm_mclk │ │ │ │ │ │ ├── pp_dpm_pcie │ │ │ │ │ │ ├── pp_dpm_sclk │ │ │ │ │ │ ├── pp_dpm_socclk │ │ │ │ │ │ ├── pp_features │ │ │ │ │ │ ├── pp_force_state │ │ │ │ │ │ ├── pp_num_states │ │ │ │ │ │ ├── pp_od_clk_voltage │ │ │ │ │ │ ├── pp_power_profile_mode │ │ │ │ │ │ ├── pp_table │ │ │ │ │ │ ├── uevent │ │ │ │ │ │ ├── vbios_version │ │ │ │ │ │ └── vendor │ │ │ │ │ └── uevent │ │ │ │ └── config.yaml │ │ │ ├── vangogh │ │ │ │ └── card0 │ │ │ │ │ └── device │ │ │ │ │ ├── current_link_speed │ │ │ │ │ ├── current_link_width │ │ │ │ │ ├── gpu_busy_percent │ │ │ │ │ ├── hwmon │ │ │ │ │ └── hwmon4 │ │ │ │ │ │ ├── freq1_input │ │ │ │ │ │ ├── freq1_label │ │ │ │ │ │ ├── in0_input │ │ │ │ │ │ ├── in0_label │ │ │ │ │ │ ├── in1_input │ │ │ │ │ │ ├── in1_label │ │ │ │ │ │ ├── name │ │ │ │ │ │ ├── power1_average │ │ │ │ │ │ ├── power1_cap │ │ │ │ │ │ ├── power1_cap_default │ │ │ │ │ │ ├── power1_cap_max │ │ │ │ │ │ ├── power1_cap_min │ │ │ │ │ │ ├── power1_input │ │ │ │ │ │ ├── power1_label │ │ │ │ │ │ ├── power2_average │ │ │ │ │ │ ├── power2_cap │ │ │ │ │ │ ├── power2_cap_default │ │ │ │ │ │ ├── power2_cap_max │ │ │ │ │ │ ├── power2_cap_min │ │ │ │ │ │ ├── power2_label │ │ │ │ │ │ ├── temp1_input │ │ │ │ │ │ └── temp1_label │ │ │ │ │ ├── pp_cur_state │ │ │ │ │ ├── pp_dpm_mclk │ │ │ │ │ ├── pp_dpm_pcie │ │ │ │ │ ├── pp_dpm_sclk │ │ │ │ │ ├── pp_dpm_socclk │ │ │ │ │ ├── pp_force_state │ │ │ │ │ ├── pp_num_states │ │ │ │ │ ├── pp_od_clk_voltage │ │ │ │ │ ├── pp_power_profile_mode │ │ │ │ │ ├── uevent │ │ │ │ │ ├── vbios_version │ │ │ │ │ └── vendor │ │ │ └── vega56 │ │ │ │ ├── card0 │ │ │ │ └── device │ │ │ │ │ ├── aer_dev_correctable │ │ │ │ │ ├── aer_dev_fatal │ │ │ │ │ ├── aer_dev_nonfatal │ │ │ │ │ ├── ari_enabled │ │ │ │ │ ├── boot_vga │ │ │ │ │ ├── broken_parity_status │ │ │ │ │ ├── class │ │ │ │ │ ├── consistent_dma_mask_bits │ │ │ │ │ ├── current_link_speed │ │ │ │ │ ├── current_link_width │ │ │ │ │ ├── d3cold_allowed │ │ │ │ │ ├── device │ │ │ │ │ ├── dma_mask_bits │ │ │ │ │ ├── driver_override │ │ │ │ │ ├── enable │ │ │ │ │ ├── gpu_busy_percent │ │ │ │ │ ├── hwmon │ │ │ │ │ └── hwmon4 │ │ │ │ │ │ ├── fan1_enable │ │ │ │ │ │ ├── fan1_input │ │ │ │ │ │ ├── fan1_max │ │ │ │ │ │ ├── fan1_min │ │ │ │ │ │ ├── fan1_target │ │ │ │ │ │ ├── freq1_input │ │ │ │ │ │ ├── freq1_label │ │ │ │ │ │ ├── freq2_input │ │ │ │ │ │ ├── freq2_label │ │ │ │ │ │ ├── in0_input │ │ │ │ │ │ ├── in0_label │ │ │ │ │ │ ├── name │ │ │ │ │ │ ├── power1_average │ │ │ │ │ │ ├── power1_cap │ │ │ │ │ │ ├── power1_cap_default │ │ │ │ │ │ ├── power1_cap_max │ │ │ │ │ │ ├── power1_cap_min │ │ │ │ │ │ ├── power1_label │ │ │ │ │ │ ├── pwm1 │ │ │ │ │ │ ├── pwm1_enable │ │ │ │ │ │ ├── pwm1_max │ │ │ │ │ │ ├── pwm1_min │ │ │ │ │ │ ├── temp1_crit │ │ │ │ │ │ ├── temp1_crit_hyst │ │ │ │ │ │ ├── temp1_emergency │ │ │ │ │ │ ├── temp1_input │ │ │ │ │ │ ├── temp1_label │ │ │ │ │ │ ├── temp2_crit │ │ │ │ │ │ ├── temp2_crit_hyst │ │ │ │ │ │ ├── temp2_emergency │ │ │ │ │ │ ├── temp2_input │ │ │ │ │ │ ├── temp2_label │ │ │ │ │ │ ├── temp3_crit │ │ │ │ │ │ ├── temp3_crit_hyst │ │ │ │ │ │ ├── temp3_emergency │ │ │ │ │ │ ├── temp3_input │ │ │ │ │ │ ├── temp3_label │ │ │ │ │ │ └── uevent │ │ │ │ │ ├── irq │ │ │ │ │ ├── link │ │ │ │ │ ├── l0s_aspm │ │ │ │ │ └── l1_aspm │ │ │ │ │ ├── local_cpulist │ │ │ │ │ ├── local_cpus │ │ │ │ │ ├── max_link_speed │ │ │ │ │ ├── max_link_width │ │ │ │ │ ├── mem_info_gtt_total │ │ │ │ │ ├── mem_info_gtt_used │ │ │ │ │ ├── mem_info_preempt_used │ │ │ │ │ ├── mem_info_vis_vram_total │ │ │ │ │ ├── mem_info_vis_vram_used │ │ │ │ │ ├── mem_info_vram_total │ │ │ │ │ ├── mem_info_vram_used │ │ │ │ │ ├── mem_info_vram_vendor │ │ │ │ │ ├── modalias │ │ │ │ │ ├── msi_bus │ │ │ │ │ ├── numa_node │ │ │ │ │ ├── pcie_bw │ │ │ │ │ ├── pcie_replay_count │ │ │ │ │ ├── power │ │ │ │ │ ├── autosuspend_delay_ms │ │ │ │ │ ├── control │ │ │ │ │ ├── runtime_active_time │ │ │ │ │ ├── runtime_status │ │ │ │ │ ├── runtime_suspended_time │ │ │ │ │ ├── wakeup │ │ │ │ │ ├── wakeup_abort_count │ │ │ │ │ ├── wakeup_active │ │ │ │ │ ├── wakeup_active_count │ │ │ │ │ ├── wakeup_count │ │ │ │ │ ├── wakeup_expire_count │ │ │ │ │ ├── wakeup_last_time_ms │ │ │ │ │ ├── wakeup_max_time_ms │ │ │ │ │ └── wakeup_total_time_ms │ │ │ │ │ ├── power_dpm_force_performance_level │ │ │ │ │ ├── power_dpm_state │ │ │ │ │ ├── power_state │ │ │ │ │ ├── pp_cur_state │ │ │ │ │ ├── pp_dpm_dcefclk │ │ │ │ │ ├── pp_dpm_mclk │ │ │ │ │ ├── pp_dpm_pcie │ │ │ │ │ ├── pp_dpm_sclk │ │ │ │ │ ├── pp_dpm_socclk │ │ │ │ │ ├── pp_features │ │ │ │ │ ├── pp_force_state │ │ │ │ │ ├── pp_mclk_od │ │ │ │ │ ├── pp_num_states │ │ │ │ │ ├── pp_od_clk_voltage │ │ │ │ │ ├── pp_power_profile_mode │ │ │ │ │ ├── pp_sclk_od │ │ │ │ │ ├── pp_table │ │ │ │ │ ├── product_name │ │ │ │ │ ├── product_number │ │ │ │ │ ├── reset_method │ │ │ │ │ ├── resource │ │ │ │ │ ├── resource0_resize │ │ │ │ │ ├── resource2_resize │ │ │ │ │ ├── revision │ │ │ │ │ ├── serial_number │ │ │ │ │ ├── subsystem_device │ │ │ │ │ ├── subsystem_vendor │ │ │ │ │ ├── thermal_throttling_logging │ │ │ │ │ ├── uevent │ │ │ │ │ ├── vbios_version │ │ │ │ │ └── vendor │ │ │ │ └── config.yaml │ │ ├── intel │ │ │ ├── a380-i915 │ │ │ │ ├── card1 │ │ │ │ │ ├── dev │ │ │ │ │ ├── device │ │ │ │ │ │ ├── current_link_speed │ │ │ │ │ │ ├── current_link_width │ │ │ │ │ │ ├── hwmon │ │ │ │ │ │ │ └── hwmon1 │ │ │ │ │ │ │ │ ├── energy1_input │ │ │ │ │ │ │ │ ├── fan1_input │ │ │ │ │ │ │ │ ├── in0_input │ │ │ │ │ │ │ │ ├── name │ │ │ │ │ │ │ │ ├── power │ │ │ │ │ │ │ │ ├── control │ │ │ │ │ │ │ │ ├── runtime_active_time │ │ │ │ │ │ │ │ ├── runtime_status │ │ │ │ │ │ │ │ └── runtime_suspended_time │ │ │ │ │ │ │ │ ├── power1_max │ │ │ │ │ │ │ │ ├── power1_max_interval │ │ │ │ │ │ │ │ ├── power1_rated_max │ │ │ │ │ │ │ │ ├── temp1_input │ │ │ │ │ │ │ │ └── uevent │ │ │ │ │ │ ├── uevent │ │ │ │ │ │ └── vendor │ │ │ │ │ ├── error │ │ │ │ │ ├── gt │ │ │ │ │ │ └── gt0 │ │ │ │ │ │ │ ├── .defaults │ │ │ │ │ │ │ ├── rps_down_threshold_pct │ │ │ │ │ │ │ ├── rps_max_freq_mhz │ │ │ │ │ │ │ ├── rps_min_freq_mhz │ │ │ │ │ │ │ └── rps_up_threshold_pct │ │ │ │ │ │ │ ├── id │ │ │ │ │ │ │ ├── media_RP0_freq_mhz │ │ │ │ │ │ │ ├── media_RPn_freq_mhz │ │ │ │ │ │ │ ├── media_freq_factor │ │ │ │ │ │ │ ├── media_freq_factor.scale │ │ │ │ │ │ │ ├── punit_req_freq_mhz │ │ │ │ │ │ │ ├── rc6_enable │ │ │ │ │ │ │ ├── rc6_residency_ms │ │ │ │ │ │ │ ├── rps_RP0_freq_mhz │ │ │ │ │ │ │ ├── rps_RP1_freq_mhz │ │ │ │ │ │ │ ├── rps_RPn_freq_mhz │ │ │ │ │ │ │ ├── rps_act_freq_mhz │ │ │ │ │ │ │ ├── rps_boost_freq_mhz │ │ │ │ │ │ │ ├── rps_cur_freq_mhz │ │ │ │ │ │ │ ├── rps_max_freq_mhz │ │ │ │ │ │ │ ├── rps_min_freq_mhz │ │ │ │ │ │ │ ├── slpc_ignore_eff_freq │ │ │ │ │ │ │ ├── throttle_reason_pl1 │ │ │ │ │ │ │ ├── throttle_reason_pl2 │ │ │ │ │ │ │ ├── throttle_reason_pl4 │ │ │ │ │ │ │ ├── throttle_reason_prochot │ │ │ │ │ │ │ ├── throttle_reason_ratl │ │ │ │ │ │ │ ├── throttle_reason_status │ │ │ │ │ │ │ ├── throttle_reason_thermal │ │ │ │ │ │ │ ├── throttle_reason_vr_tdc │ │ │ │ │ │ │ └── throttle_reason_vr_thermalert │ │ │ │ │ ├── gt_RP0_freq_mhz │ │ │ │ │ ├── gt_RP1_freq_mhz │ │ │ │ │ ├── gt_RPn_freq_mhz │ │ │ │ │ ├── gt_act_freq_mhz │ │ │ │ │ ├── gt_boost_freq_mhz │ │ │ │ │ ├── gt_cur_freq_mhz │ │ │ │ │ ├── gt_max_freq_mhz │ │ │ │ │ ├── gt_min_freq_mhz │ │ │ │ │ └── uevent │ │ │ │ └── config.yaml │ │ │ ├── a380-xe │ │ │ │ └── card0 │ │ │ │ │ ├── dev │ │ │ │ │ ├── device │ │ │ │ │ ├── current_link_speed │ │ │ │ │ ├── current_link_width │ │ │ │ │ ├── hwmon │ │ │ │ │ │ └── hwmon1 │ │ │ │ │ │ │ ├── energy2_input │ │ │ │ │ │ │ ├── energy2_label │ │ │ │ │ │ │ ├── in1_input │ │ │ │ │ │ │ ├── in1_label │ │ │ │ │ │ │ ├── name │ │ │ │ │ │ │ ├── power │ │ │ │ │ │ │ ├── control │ │ │ │ │ │ │ ├── runtime_active_time │ │ │ │ │ │ │ ├── runtime_status │ │ │ │ │ │ │ └── runtime_suspended_time │ │ │ │ │ │ │ ├── power1_label │ │ │ │ │ │ │ ├── power2_label │ │ │ │ │ │ │ ├── power2_max │ │ │ │ │ │ │ ├── power2_max_interval │ │ │ │ │ │ │ ├── power2_rated_max │ │ │ │ │ │ │ └── uevent │ │ │ │ │ ├── tile0 │ │ │ │ │ │ └── gt0 │ │ │ │ │ │ │ ├── engines │ │ │ │ │ │ │ ├── bcs │ │ │ │ │ │ │ │ ├── .defaults │ │ │ │ │ │ │ │ │ ├── job_timeout_max │ │ │ │ │ │ │ │ │ ├── job_timeout_min │ │ │ │ │ │ │ │ │ ├── job_timeout_ms │ │ │ │ │ │ │ │ │ ├── preempt_timeout_max │ │ │ │ │ │ │ │ │ ├── preempt_timeout_min │ │ │ │ │ │ │ │ │ ├── preempt_timeout_us │ │ │ │ │ │ │ │ │ ├── timeslice_duration_max │ │ │ │ │ │ │ │ │ ├── timeslice_duration_min │ │ │ │ │ │ │ │ │ └── timeslice_duration_us │ │ │ │ │ │ │ │ ├── job_timeout_max │ │ │ │ │ │ │ │ ├── job_timeout_min │ │ │ │ │ │ │ │ ├── job_timeout_ms │ │ │ │ │ │ │ │ ├── preempt_timeout_max │ │ │ │ │ │ │ │ ├── preempt_timeout_min │ │ │ │ │ │ │ │ ├── preempt_timeout_us │ │ │ │ │ │ │ │ ├── timeslice_duration_max │ │ │ │ │ │ │ │ ├── timeslice_duration_min │ │ │ │ │ │ │ │ └── timeslice_duration_us │ │ │ │ │ │ │ ├── ccs │ │ │ │ │ │ │ │ ├── .defaults │ │ │ │ │ │ │ │ │ ├── job_timeout_max │ │ │ │ │ │ │ │ │ ├── job_timeout_min │ │ │ │ │ │ │ │ │ ├── job_timeout_ms │ │ │ │ │ │ │ │ │ ├── preempt_timeout_max │ │ │ │ │ │ │ │ │ ├── preempt_timeout_min │ │ │ │ │ │ │ │ │ ├── preempt_timeout_us │ │ │ │ │ │ │ │ │ ├── timeslice_duration_max │ │ │ │ │ │ │ │ │ ├── timeslice_duration_min │ │ │ │ │ │ │ │ │ └── timeslice_duration_us │ │ │ │ │ │ │ │ ├── job_timeout_max │ │ │ │ │ │ │ │ ├── job_timeout_min │ │ │ │ │ │ │ │ ├── job_timeout_ms │ │ │ │ │ │ │ │ ├── preempt_timeout_max │ │ │ │ │ │ │ │ ├── preempt_timeout_min │ │ │ │ │ │ │ │ ├── preempt_timeout_us │ │ │ │ │ │ │ │ ├── timeslice_duration_max │ │ │ │ │ │ │ │ ├── timeslice_duration_min │ │ │ │ │ │ │ │ └── timeslice_duration_us │ │ │ │ │ │ │ ├── rcs │ │ │ │ │ │ │ │ ├── .defaults │ │ │ │ │ │ │ │ │ ├── job_timeout_max │ │ │ │ │ │ │ │ │ ├── job_timeout_min │ │ │ │ │ │ │ │ │ ├── job_timeout_ms │ │ │ │ │ │ │ │ │ ├── preempt_timeout_max │ │ │ │ │ │ │ │ │ ├── preempt_timeout_min │ │ │ │ │ │ │ │ │ ├── preempt_timeout_us │ │ │ │ │ │ │ │ │ ├── timeslice_duration_max │ │ │ │ │ │ │ │ │ ├── timeslice_duration_min │ │ │ │ │ │ │ │ │ └── timeslice_duration_us │ │ │ │ │ │ │ │ ├── job_timeout_max │ │ │ │ │ │ │ │ ├── job_timeout_min │ │ │ │ │ │ │ │ ├── job_timeout_ms │ │ │ │ │ │ │ │ ├── preempt_timeout_max │ │ │ │ │ │ │ │ ├── preempt_timeout_min │ │ │ │ │ │ │ │ ├── preempt_timeout_us │ │ │ │ │ │ │ │ ├── timeslice_duration_max │ │ │ │ │ │ │ │ ├── timeslice_duration_min │ │ │ │ │ │ │ │ └── timeslice_duration_us │ │ │ │ │ │ │ ├── vcs │ │ │ │ │ │ │ │ ├── .defaults │ │ │ │ │ │ │ │ │ ├── job_timeout_max │ │ │ │ │ │ │ │ │ ├── job_timeout_min │ │ │ │ │ │ │ │ │ ├── job_timeout_ms │ │ │ │ │ │ │ │ │ ├── preempt_timeout_max │ │ │ │ │ │ │ │ │ ├── preempt_timeout_min │ │ │ │ │ │ │ │ │ ├── preempt_timeout_us │ │ │ │ │ │ │ │ │ ├── timeslice_duration_max │ │ │ │ │ │ │ │ │ ├── timeslice_duration_min │ │ │ │ │ │ │ │ │ └── timeslice_duration_us │ │ │ │ │ │ │ │ ├── job_timeout_max │ │ │ │ │ │ │ │ ├── job_timeout_min │ │ │ │ │ │ │ │ ├── job_timeout_ms │ │ │ │ │ │ │ │ ├── preempt_timeout_max │ │ │ │ │ │ │ │ ├── preempt_timeout_min │ │ │ │ │ │ │ │ ├── preempt_timeout_us │ │ │ │ │ │ │ │ ├── timeslice_duration_max │ │ │ │ │ │ │ │ ├── timeslice_duration_min │ │ │ │ │ │ │ │ └── timeslice_duration_us │ │ │ │ │ │ │ └── vecs │ │ │ │ │ │ │ │ ├── .defaults │ │ │ │ │ │ │ │ ├── job_timeout_max │ │ │ │ │ │ │ │ ├── job_timeout_min │ │ │ │ │ │ │ │ ├── job_timeout_ms │ │ │ │ │ │ │ │ ├── preempt_timeout_max │ │ │ │ │ │ │ │ ├── preempt_timeout_min │ │ │ │ │ │ │ │ ├── preempt_timeout_us │ │ │ │ │ │ │ │ ├── timeslice_duration_max │ │ │ │ │ │ │ │ ├── timeslice_duration_min │ │ │ │ │ │ │ │ └── timeslice_duration_us │ │ │ │ │ │ │ │ ├── job_timeout_max │ │ │ │ │ │ │ │ ├── job_timeout_min │ │ │ │ │ │ │ │ ├── job_timeout_ms │ │ │ │ │ │ │ │ ├── preempt_timeout_max │ │ │ │ │ │ │ │ ├── preempt_timeout_min │ │ │ │ │ │ │ │ ├── preempt_timeout_us │ │ │ │ │ │ │ │ ├── timeslice_duration_max │ │ │ │ │ │ │ │ ├── timeslice_duration_min │ │ │ │ │ │ │ │ └── timeslice_duration_us │ │ │ │ │ │ │ ├── freq0 │ │ │ │ │ │ │ ├── act_freq │ │ │ │ │ │ │ ├── cur_freq │ │ │ │ │ │ │ ├── max_freq │ │ │ │ │ │ │ ├── min_freq │ │ │ │ │ │ │ ├── rp0_freq │ │ │ │ │ │ │ ├── rpe_freq │ │ │ │ │ │ │ ├── rpn_freq │ │ │ │ │ │ │ └── throttle │ │ │ │ │ │ │ │ ├── reason_pl1 │ │ │ │ │ │ │ │ ├── reason_pl2 │ │ │ │ │ │ │ │ ├── reason_pl4 │ │ │ │ │ │ │ │ ├── reason_prochot │ │ │ │ │ │ │ │ ├── reason_ratl │ │ │ │ │ │ │ │ ├── reason_thermal │ │ │ │ │ │ │ │ ├── reason_vr_tdc │ │ │ │ │ │ │ │ ├── reason_vr_thermalert │ │ │ │ │ │ │ │ └── status │ │ │ │ │ │ │ └── gtidle │ │ │ │ │ │ │ ├── idle_residency_ms │ │ │ │ │ │ │ ├── idle_status │ │ │ │ │ │ │ └── name │ │ │ │ │ ├── uevent │ │ │ │ │ └── vendor │ │ │ │ │ └── uevent │ │ │ ├── cometlake │ │ │ │ └── card0 │ │ │ │ │ ├── dev │ │ │ │ │ ├── device │ │ │ │ │ ├── current_link_speed │ │ │ │ │ ├── current_link_width │ │ │ │ │ ├── uevent │ │ │ │ │ └── vendor │ │ │ │ │ ├── gt_RP0_freq_mhz │ │ │ │ │ ├── gt_RP1_freq_mhz │ │ │ │ │ ├── gt_RPn_freq_mhz │ │ │ │ │ ├── gt_act_freq_mhz │ │ │ │ │ ├── gt_boost_freq_mhz │ │ │ │ │ ├── gt_cur_freq_mhz │ │ │ │ │ ├── gt_max_freq_mhz │ │ │ │ │ ├── gt_min_freq_mhz │ │ │ │ │ └── uevent │ │ │ └── tigerlake │ │ │ │ └── card0 │ │ │ │ └── device │ │ │ │ ├── current_link_speed │ │ │ │ ├── current_link_width │ │ │ │ ├── tile0 │ │ │ │ └── gt0 │ │ │ │ │ ├── engines │ │ │ │ │ ├── bcs │ │ │ │ │ │ ├── .defaults │ │ │ │ │ │ │ ├── job_timeout_max │ │ │ │ │ │ │ ├── job_timeout_min │ │ │ │ │ │ │ ├── job_timeout_ms │ │ │ │ │ │ │ ├── preempt_timeout_max │ │ │ │ │ │ │ ├── preempt_timeout_min │ │ │ │ │ │ │ ├── preempt_timeout_us │ │ │ │ │ │ │ ├── timeslice_duration_max │ │ │ │ │ │ │ ├── timeslice_duration_min │ │ │ │ │ │ │ └── timeslice_duration_us │ │ │ │ │ │ ├── job_timeout_max │ │ │ │ │ │ ├── job_timeout_min │ │ │ │ │ │ ├── job_timeout_ms │ │ │ │ │ │ ├── preempt_timeout_max │ │ │ │ │ │ ├── preempt_timeout_min │ │ │ │ │ │ ├── preempt_timeout_us │ │ │ │ │ │ ├── timeslice_duration_max │ │ │ │ │ │ ├── timeslice_duration_min │ │ │ │ │ │ └── timeslice_duration_us │ │ │ │ │ ├── rcs │ │ │ │ │ │ ├── .defaults │ │ │ │ │ │ │ ├── job_timeout_max │ │ │ │ │ │ │ ├── job_timeout_min │ │ │ │ │ │ │ ├── job_timeout_ms │ │ │ │ │ │ │ ├── preempt_timeout_max │ │ │ │ │ │ │ ├── preempt_timeout_min │ │ │ │ │ │ │ ├── preempt_timeout_us │ │ │ │ │ │ │ ├── timeslice_duration_max │ │ │ │ │ │ │ ├── timeslice_duration_min │ │ │ │ │ │ │ └── timeslice_duration_us │ │ │ │ │ │ ├── job_timeout_max │ │ │ │ │ │ ├── job_timeout_min │ │ │ │ │ │ ├── job_timeout_ms │ │ │ │ │ │ ├── preempt_timeout_max │ │ │ │ │ │ ├── preempt_timeout_min │ │ │ │ │ │ ├── preempt_timeout_us │ │ │ │ │ │ ├── timeslice_duration_max │ │ │ │ │ │ ├── timeslice_duration_min │ │ │ │ │ │ └── timeslice_duration_us │ │ │ │ │ ├── vcs │ │ │ │ │ │ ├── .defaults │ │ │ │ │ │ │ ├── job_timeout_max │ │ │ │ │ │ │ ├── job_timeout_min │ │ │ │ │ │ │ ├── job_timeout_ms │ │ │ │ │ │ │ ├── preempt_timeout_max │ │ │ │ │ │ │ ├── preempt_timeout_min │ │ │ │ │ │ │ ├── preempt_timeout_us │ │ │ │ │ │ │ ├── timeslice_duration_max │ │ │ │ │ │ │ ├── timeslice_duration_min │ │ │ │ │ │ │ └── timeslice_duration_us │ │ │ │ │ │ ├── job_timeout_max │ │ │ │ │ │ ├── job_timeout_min │ │ │ │ │ │ ├── job_timeout_ms │ │ │ │ │ │ ├── preempt_timeout_max │ │ │ │ │ │ ├── preempt_timeout_min │ │ │ │ │ │ ├── preempt_timeout_us │ │ │ │ │ │ ├── timeslice_duration_max │ │ │ │ │ │ ├── timeslice_duration_min │ │ │ │ │ │ └── timeslice_duration_us │ │ │ │ │ └── vecs │ │ │ │ │ │ ├── .defaults │ │ │ │ │ │ ├── job_timeout_max │ │ │ │ │ │ ├── job_timeout_min │ │ │ │ │ │ ├── job_timeout_ms │ │ │ │ │ │ ├── preempt_timeout_max │ │ │ │ │ │ ├── preempt_timeout_min │ │ │ │ │ │ ├── preempt_timeout_us │ │ │ │ │ │ ├── timeslice_duration_max │ │ │ │ │ │ ├── timeslice_duration_min │ │ │ │ │ │ └── timeslice_duration_us │ │ │ │ │ │ ├── job_timeout_max │ │ │ │ │ │ ├── job_timeout_min │ │ │ │ │ │ ├── job_timeout_ms │ │ │ │ │ │ ├── preempt_timeout_max │ │ │ │ │ │ ├── preempt_timeout_min │ │ │ │ │ │ ├── preempt_timeout_us │ │ │ │ │ │ ├── timeslice_duration_max │ │ │ │ │ │ ├── timeslice_duration_min │ │ │ │ │ │ └── timeslice_duration_us │ │ │ │ │ ├── freq0 │ │ │ │ │ ├── act_freq │ │ │ │ │ ├── cur_freq │ │ │ │ │ ├── max_freq │ │ │ │ │ ├── min_freq │ │ │ │ │ ├── rp0_freq │ │ │ │ │ ├── rpe_freq │ │ │ │ │ ├── rpn_freq │ │ │ │ │ └── throttle │ │ │ │ │ │ ├── reason_pl1 │ │ │ │ │ │ ├── reason_pl2 │ │ │ │ │ │ ├── reason_pl4 │ │ │ │ │ │ ├── reason_prochot │ │ │ │ │ │ ├── reason_ratl │ │ │ │ │ │ ├── reason_thermal │ │ │ │ │ │ ├── reason_vr_tdc │ │ │ │ │ │ ├── reason_vr_thermalert │ │ │ │ │ │ └── status │ │ │ │ │ └── gtidle │ │ │ │ │ ├── idle_residency_ms │ │ │ │ │ ├── idle_status │ │ │ │ │ └── name │ │ │ │ ├── uevent │ │ │ │ └── vendor │ │ └── nvidia │ │ │ └── rtx4080 │ │ │ └── card1 │ │ │ └── device │ │ │ ├── current_link_speed │ │ │ ├── current_link_width │ │ │ ├── uevent │ │ │ └── vendor │ │ ├── mock_fs.rs │ │ ├── mod.rs │ │ └── snapshots │ │ ├── lact_daemon__tests__amd__hd7870.snap │ │ ├── lact_daemon__tests__amd__r9-280.snap │ │ ├── lact_daemon__tests__amd__rx5500xt.snap │ │ ├── lact_daemon__tests__amd__rx5700xt.snap │ │ ├── lact_daemon__tests__amd__rx580.snap │ │ ├── lact_daemon__tests__amd__rx6600.snap │ │ ├── lact_daemon__tests__amd__rx6600xt.snap │ │ ├── lact_daemon__tests__amd__rx6900xt.snap │ │ ├── lact_daemon__tests__amd__rx7600s.snap │ │ ├── lact_daemon__tests__amd__rx7700s.snap │ │ ├── lact_daemon__tests__amd__rx7800xt.snap │ │ ├── lact_daemon__tests__amd__rx7900xtx.snap │ │ ├── lact_daemon__tests__amd__rx9070.snap │ │ ├── lact_daemon__tests__amd__rx9070xt.snap │ │ ├── lact_daemon__tests__amd__vangogh.snap │ │ ├── lact_daemon__tests__amd__vega56.snap │ │ ├── lact_daemon__tests__apply_config__amd__rx5500xt.snap │ │ ├── lact_daemon__tests__apply_config__amd__rx6900xt.snap │ │ ├── lact_daemon__tests__apply_config__amd__rx7800xt.snap │ │ ├── lact_daemon__tests__apply_config__amd__rx7900xtx.snap │ │ ├── lact_daemon__tests__apply_config__amd__rx9070.snap │ │ ├── lact_daemon__tests__apply_config__amd__rx9070xt.snap │ │ ├── lact_daemon__tests__apply_config__amd__vega56.snap │ │ ├── lact_daemon__tests__apply_config__intel__a380-i915.snap │ │ ├── lact_daemon__tests__intel__a380-i915.snap │ │ ├── lact_daemon__tests__intel__a380-xe.snap │ │ ├── lact_daemon__tests__intel__cometlake.snap │ │ ├── lact_daemon__tests__intel__tigerlake.snap │ │ └── lact_daemon__tests__nvidia__rtx4080.snap └── vulkan_schema.json ├── lact-gui ├── Cargo.toml └── src │ ├── app.rs │ ├── app │ ├── apply_revealer.rs │ ├── confirmation_dialog.rs │ ├── ext.rs │ ├── graphs_window │ │ ├── mod.rs │ │ ├── plot │ │ │ ├── cubic_spline.rs │ │ │ ├── imp.rs │ │ │ ├── mod.rs │ │ │ ├── render_thread.rs │ │ │ └── to_texture_ext.rs │ │ ├── plot_component.rs │ │ └── stat.rs │ ├── header.rs │ ├── header │ │ ├── new_profile_dialog.rs │ │ ├── profile_rename_dialog.rs │ │ ├── profile_row.rs │ │ ├── profile_rule_window.rs │ │ └── profile_rule_window │ │ │ └── profile_row.rs │ ├── info_row.rs │ ├── msg.rs │ ├── page_section.rs │ ├── pages.rs │ └── pages │ │ ├── info_page.rs │ │ ├── oc_adjustment │ │ ├── imp.rs │ │ └── mod.rs │ │ ├── oc_page.rs │ │ ├── oc_page │ │ ├── clocks_frame.rs │ │ ├── clocks_frame │ │ │ └── adjustment_row.rs │ │ ├── gpu_stats_section.rs │ │ ├── performance_frame.rs │ │ ├── performance_frame │ │ │ └── heuristics_list.rs │ │ ├── power_cap_section.rs │ │ └── power_states │ │ │ ├── mod.rs │ │ │ ├── power_states_frame.rs │ │ │ └── power_states_list.rs │ │ ├── software_page.rs │ │ ├── software_page │ │ ├── vulkan.rs │ │ └── vulkan │ │ │ └── feature_window.rs │ │ ├── thermals_page.rs │ │ └── thermals_page │ │ └── fan_curve_frame.rs │ ├── config.rs │ └── lib.rs ├── lact-schema ├── Cargo.toml ├── build.rs └── src │ ├── args.rs │ ├── config.rs │ ├── lib.rs │ ├── profiles.rs │ ├── request.rs │ ├── response.rs │ └── tests.rs ├── lact ├── Cargo.toml ├── benches │ └── bench.rs └── src │ ├── flatpak.rs │ └── main.rs ├── pkg ├── README.md ├── bin │ └── generate_spec.sh ├── fedora-spec │ ├── AUTOGENERATED.md │ ├── lact-headless.spec │ ├── lact-libadwaita.spec │ └── lact.spec ├── images │ ├── arch │ │ └── Dockerfile │ ├── debian-12 │ │ └── Dockerfile │ ├── fedora-41 │ │ └── Dockerfile │ ├── fedora-42 │ │ └── Dockerfile │ ├── opensuse-tumbleweed │ │ └── Dockerfile │ ├── rhel-8 │ │ └── Dockerfile │ ├── rhel-9 │ │ └── Dockerfile │ ├── ubuntu-2204 │ │ └── Dockerfile │ └── ubuntu-2404 │ │ └── Dockerfile └── recipes │ ├── lact-headless │ └── recipe.yml │ ├── lact-libadwaita │ └── recipe.yml │ └── lact │ └── recipe.yml ├── res ├── device_ids.json ├── io.github.ilya_zlobintsev.LACT-symbolic.svg ├── io.github.ilya_zlobintsev.LACT.Devel.svg ├── io.github.ilya_zlobintsev.LACT.Source.svg ├── io.github.ilya_zlobintsev.LACT.desktop ├── io.github.ilya_zlobintsev.LACT.metainfo.xml ├── io.github.ilya_zlobintsev.LACT.png ├── io.github.ilya_zlobintsev.LACT.svg ├── lact-daemon-openrc ├── lactd.service └── screenshots │ ├── 1.png │ ├── 2.png │ ├── 3.png │ ├── 4.png │ └── 5.png └── rust-toolchain.toml /.gitattributes: -------------------------------------------------------------------------------- 1 | */include/** linguist-vendored -------------------------------------------------------------------------------- /API.md: -------------------------------------------------------------------------------- 1 | docs/API.md -------------------------------------------------------------------------------- /clippy.toml: -------------------------------------------------------------------------------- 1 | too-many-lines-threshold = 150 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/hd7870/card0/device/current_link_speed: -------------------------------------------------------------------------------- 1 | 8.0 GT/s PCIe 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/hd7870/card0/device/current_link_width: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/hd7870/card0/device/hwmon/hwmon3/freq1_input: -------------------------------------------------------------------------------- 1 | 300000000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/hd7870/card0/device/hwmon/hwmon3/name: -------------------------------------------------------------------------------- 1 | radeon 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/hd7870/card0/device/hwmon/hwmon3/pwm1: -------------------------------------------------------------------------------- 1 | 51 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/hd7870/card0/device/hwmon/hwmon3/pwm1_enable: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/hd7870/card0/device/hwmon/hwmon3/pwm1_max: -------------------------------------------------------------------------------- 1 | 255 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/hd7870/card0/device/hwmon/hwmon3/pwm1_min: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/hd7870/card0/device/hwmon/hwmon3/temp1_crit: -------------------------------------------------------------------------------- 1 | 120000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/hd7870/card0/device/hwmon/hwmon3/temp1_crit_hyst: -------------------------------------------------------------------------------- 1 | 90000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/hd7870/card0/device/hwmon/hwmon3/temp1_input: -------------------------------------------------------------------------------- 1 | 27000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/hd7870/card0/device/vendor: -------------------------------------------------------------------------------- 1 | 0x1002 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/r9-280/card0/device/current_link_speed: -------------------------------------------------------------------------------- 1 | 5.0 GT/s PCIe 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/r9-280/card0/device/current_link_width: -------------------------------------------------------------------------------- 1 | 8 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/r9-280/card0/device/hwmon/hwmon0/fan1_enable: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/r9-280/card0/device/hwmon/hwmon0/freq1_input: -------------------------------------------------------------------------------- 1 | 300000000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/r9-280/card0/device/hwmon/hwmon0/freq1_label: -------------------------------------------------------------------------------- 1 | sclk 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/r9-280/card0/device/hwmon/hwmon0/freq2_input: -------------------------------------------------------------------------------- 1 | 150000000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/r9-280/card0/device/hwmon/hwmon0/freq2_label: -------------------------------------------------------------------------------- 1 | mclk 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/r9-280/card0/device/hwmon/hwmon0/name: -------------------------------------------------------------------------------- 1 | amdgpu 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/r9-280/card0/device/hwmon/hwmon0/power1_label: -------------------------------------------------------------------------------- 1 | PPT 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/r9-280/card0/device/hwmon/hwmon0/pwm1: -------------------------------------------------------------------------------- 1 | 139 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/r9-280/card0/device/hwmon/hwmon0/pwm1_enable: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/r9-280/card0/device/hwmon/hwmon0/pwm1_max: -------------------------------------------------------------------------------- 1 | 255 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/r9-280/card0/device/hwmon/hwmon0/pwm1_min: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/r9-280/card0/device/hwmon/hwmon0/temp1_crit: -------------------------------------------------------------------------------- 1 | 120000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/r9-280/card0/device/hwmon/hwmon0/temp1_crit_hyst: -------------------------------------------------------------------------------- 1 | 90000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/r9-280/card0/device/hwmon/hwmon0/temp1_input: -------------------------------------------------------------------------------- 1 | 37000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/r9-280/card0/device/hwmon/hwmon0/temp1_label: -------------------------------------------------------------------------------- 1 | edge 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/r9-280/card0/device/pp_dpm_mclk: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/r9-280/card0/device/pp_dpm_pcie: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/r9-280/card0/device/pp_dpm_sclk: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/r9-280/card0/device/pp_force_state: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/r9-280/card0/device/pp_num_states: -------------------------------------------------------------------------------- 1 | states: 0 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/r9-280/card0/device/vbios_version: -------------------------------------------------------------------------------- 1 | xxx-xxx-xxx 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/r9-280/card0/device/vendor: -------------------------------------------------------------------------------- 1 | 0x1002 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx5500xt/card1/dev: -------------------------------------------------------------------------------- 1 | 226:1 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx5500xt/card1/device/current_link_speed: -------------------------------------------------------------------------------- 1 | 16.0 GT/s PCIe 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx5500xt/card1/device/current_link_width: -------------------------------------------------------------------------------- 1 | 16 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx5500xt/card1/device/gpu_busy_percent: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx5500xt/card1/device/hwmon/hwmon3/fan1_enable: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx5500xt/card1/device/hwmon/hwmon3/fan1_input: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx5500xt/card1/device/hwmon/hwmon3/fan1_max: -------------------------------------------------------------------------------- 1 | 3200 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx5500xt/card1/device/hwmon/hwmon3/fan1_min: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx5500xt/card1/device/hwmon/hwmon3/fan1_target: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx5500xt/card1/device/hwmon/hwmon3/freq1_input: -------------------------------------------------------------------------------- 1 | 31000000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx5500xt/card1/device/hwmon/hwmon3/freq1_label: -------------------------------------------------------------------------------- 1 | sclk 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx5500xt/card1/device/hwmon/hwmon3/freq2_input: -------------------------------------------------------------------------------- 1 | 875000000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx5500xt/card1/device/hwmon/hwmon3/freq2_label: -------------------------------------------------------------------------------- 1 | mclk 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx5500xt/card1/device/hwmon/hwmon3/in0_input: -------------------------------------------------------------------------------- 1 | 700 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx5500xt/card1/device/hwmon/hwmon3/in0_label: -------------------------------------------------------------------------------- 1 | vddgfx 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx5500xt/card1/device/hwmon/hwmon3/name: -------------------------------------------------------------------------------- 1 | amdgpu 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx5500xt/card1/device/hwmon/hwmon3/power/async: -------------------------------------------------------------------------------- 1 | disabled 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx5500xt/card1/device/hwmon/hwmon3/power/control: -------------------------------------------------------------------------------- 1 | auto 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx5500xt/card1/device/hwmon/hwmon3/power/runtime_active_kids: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx5500xt/card1/device/hwmon/hwmon3/power/runtime_active_time: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx5500xt/card1/device/hwmon/hwmon3/power/runtime_enabled: -------------------------------------------------------------------------------- 1 | disabled 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx5500xt/card1/device/hwmon/hwmon3/power/runtime_status: -------------------------------------------------------------------------------- 1 | unsupported 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx5500xt/card1/device/hwmon/hwmon3/power/runtime_suspended_time: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx5500xt/card1/device/hwmon/hwmon3/power/runtime_usage: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx5500xt/card1/device/hwmon/hwmon3/power1_average: -------------------------------------------------------------------------------- 1 | 16000000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx5500xt/card1/device/hwmon/hwmon3/power1_cap: -------------------------------------------------------------------------------- 1 | 130000000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx5500xt/card1/device/hwmon/hwmon3/power1_cap_default: -------------------------------------------------------------------------------- 1 | 130000000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx5500xt/card1/device/hwmon/hwmon3/power1_cap_max: -------------------------------------------------------------------------------- 1 | 156000000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx5500xt/card1/device/hwmon/hwmon3/power1_cap_min: -------------------------------------------------------------------------------- 1 | 65000000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx5500xt/card1/device/hwmon/hwmon3/power1_label: -------------------------------------------------------------------------------- 1 | PPT 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx5500xt/card1/device/hwmon/hwmon3/pwm1: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx5500xt/card1/device/hwmon/hwmon3/pwm1_enable: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx5500xt/card1/device/hwmon/hwmon3/pwm1_max: -------------------------------------------------------------------------------- 1 | 255 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx5500xt/card1/device/hwmon/hwmon3/pwm1_min: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx5500xt/card1/device/hwmon/hwmon3/temp1_crit: -------------------------------------------------------------------------------- 1 | 110000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx5500xt/card1/device/hwmon/hwmon3/temp1_crit_hyst: -------------------------------------------------------------------------------- 1 | -273150 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx5500xt/card1/device/hwmon/hwmon3/temp1_emergency: -------------------------------------------------------------------------------- 1 | 115000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx5500xt/card1/device/hwmon/hwmon3/temp1_input: -------------------------------------------------------------------------------- 1 | 48000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx5500xt/card1/device/hwmon/hwmon3/temp1_label: -------------------------------------------------------------------------------- 1 | edge 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx5500xt/card1/device/hwmon/hwmon3/temp2_crit: -------------------------------------------------------------------------------- 1 | 105000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx5500xt/card1/device/hwmon/hwmon3/temp2_crit_hyst: -------------------------------------------------------------------------------- 1 | -273150 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx5500xt/card1/device/hwmon/hwmon3/temp2_emergency: -------------------------------------------------------------------------------- 1 | 110000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx5500xt/card1/device/hwmon/hwmon3/temp2_input: -------------------------------------------------------------------------------- 1 | 48000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx5500xt/card1/device/hwmon/hwmon3/temp2_label: -------------------------------------------------------------------------------- 1 | junction 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx5500xt/card1/device/hwmon/hwmon3/temp3_crit: -------------------------------------------------------------------------------- 1 | 105000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx5500xt/card1/device/hwmon/hwmon3/temp3_crit_hyst: -------------------------------------------------------------------------------- 1 | -273150 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx5500xt/card1/device/hwmon/hwmon3/temp3_emergency: -------------------------------------------------------------------------------- 1 | 110000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx5500xt/card1/device/hwmon/hwmon3/temp3_input: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx5500xt/card1/device/hwmon/hwmon3/temp3_label: -------------------------------------------------------------------------------- 1 | mem 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx5500xt/card1/device/pp_cur_state: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx5500xt/card1/device/pp_dpm_sclk: -------------------------------------------------------------------------------- 1 | 0: 300Mhz 2 | 1: 0Mhz * 3 | 2: 1900Mhz 4 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx5500xt/card1/device/pp_force_state: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx5500xt/card1/device/pp_num_states: -------------------------------------------------------------------------------- 1 | states: 1 2 | 0 default 3 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx5500xt/card1/device/vbios_version: -------------------------------------------------------------------------------- 1 | xxx-xxx-xxx 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx5500xt/card1/device/vendor: -------------------------------------------------------------------------------- 1 | 0x1002 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx5500xt/config.yaml: -------------------------------------------------------------------------------- 1 | max_core_clock: 2000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx5700xt/card1/device/current_link_speed: -------------------------------------------------------------------------------- 1 | 16.0 GT/s PCIe 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx5700xt/card1/device/current_link_width: -------------------------------------------------------------------------------- 1 | 16 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx5700xt/card1/device/gpu_busy_percent: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx5700xt/card1/device/hwmon/hwmon1/fan1_enable: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx5700xt/card1/device/hwmon/hwmon1/fan1_input: -------------------------------------------------------------------------------- 1 | 29 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx5700xt/card1/device/hwmon/hwmon1/fan1_max: -------------------------------------------------------------------------------- 1 | 3400 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx5700xt/card1/device/hwmon/hwmon1/fan1_min: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx5700xt/card1/device/hwmon/hwmon1/fan1_target: -------------------------------------------------------------------------------- 1 | 29 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx5700xt/card1/device/hwmon/hwmon1/freq1_input: -------------------------------------------------------------------------------- 1 | 10000000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx5700xt/card1/device/hwmon/hwmon1/freq1_label: -------------------------------------------------------------------------------- 1 | sclk 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx5700xt/card1/device/hwmon/hwmon1/freq2_input: -------------------------------------------------------------------------------- 1 | 875000000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx5700xt/card1/device/hwmon/hwmon1/freq2_label: -------------------------------------------------------------------------------- 1 | mclk 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx5700xt/card1/device/hwmon/hwmon1/in0_input: -------------------------------------------------------------------------------- 1 | 1100 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx5700xt/card1/device/hwmon/hwmon1/in0_label: -------------------------------------------------------------------------------- 1 | vddgfx 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx5700xt/card1/device/hwmon/hwmon1/name: -------------------------------------------------------------------------------- 1 | amdgpu 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx5700xt/card1/device/hwmon/hwmon1/power1_average: -------------------------------------------------------------------------------- 1 | 29000000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx5700xt/card1/device/hwmon/hwmon1/power1_cap: -------------------------------------------------------------------------------- 1 | 220000000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx5700xt/card1/device/hwmon/hwmon1/power1_cap_default: -------------------------------------------------------------------------------- 1 | 220000000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx5700xt/card1/device/hwmon/hwmon1/power1_cap_max: -------------------------------------------------------------------------------- 1 | 330000000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx5700xt/card1/device/hwmon/hwmon1/power1_cap_min: -------------------------------------------------------------------------------- 1 | 110000000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx5700xt/card1/device/hwmon/hwmon1/power1_label: -------------------------------------------------------------------------------- 1 | PPT 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx5700xt/card1/device/hwmon/hwmon1/pwm1: -------------------------------------------------------------------------------- 1 | 65 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx5700xt/card1/device/hwmon/hwmon1/pwm1_enable: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx5700xt/card1/device/hwmon/hwmon1/pwm1_max: -------------------------------------------------------------------------------- 1 | 255 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx5700xt/card1/device/hwmon/hwmon1/pwm1_min: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx5700xt/card1/device/hwmon/hwmon1/temp1_crit: -------------------------------------------------------------------------------- 1 | 100000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx5700xt/card1/device/hwmon/hwmon1/temp1_crit_hyst: -------------------------------------------------------------------------------- 1 | -273150 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx5700xt/card1/device/hwmon/hwmon1/temp1_emergency: -------------------------------------------------------------------------------- 1 | 105000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx5700xt/card1/device/hwmon/hwmon1/temp1_input: -------------------------------------------------------------------------------- 1 | 58000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx5700xt/card1/device/hwmon/hwmon1/temp1_label: -------------------------------------------------------------------------------- 1 | edge 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx5700xt/card1/device/hwmon/hwmon1/temp2_crit: -------------------------------------------------------------------------------- 1 | 108000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx5700xt/card1/device/hwmon/hwmon1/temp2_crit_hyst: -------------------------------------------------------------------------------- 1 | -273150 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx5700xt/card1/device/hwmon/hwmon1/temp2_emergency: -------------------------------------------------------------------------------- 1 | 113000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx5700xt/card1/device/hwmon/hwmon1/temp2_input: -------------------------------------------------------------------------------- 1 | 58000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx5700xt/card1/device/hwmon/hwmon1/temp2_label: -------------------------------------------------------------------------------- 1 | junction 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx5700xt/card1/device/hwmon/hwmon1/temp3_crit: -------------------------------------------------------------------------------- 1 | 105000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx5700xt/card1/device/hwmon/hwmon1/temp3_crit_hyst: -------------------------------------------------------------------------------- 1 | -273150 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx5700xt/card1/device/hwmon/hwmon1/temp3_emergency: -------------------------------------------------------------------------------- 1 | 110000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx5700xt/card1/device/hwmon/hwmon1/temp3_input: -------------------------------------------------------------------------------- 1 | 62000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx5700xt/card1/device/hwmon/hwmon1/temp3_label: -------------------------------------------------------------------------------- 1 | mem 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx5700xt/card1/device/pp_cur_state: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx5700xt/card1/device/pp_dpm_sclk: -------------------------------------------------------------------------------- 1 | 0: 300Mhz 2 | 1: 1900Mhz 3 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx5700xt/card1/device/pp_dpm_socclk: -------------------------------------------------------------------------------- 1 | 0: 506Mhz 2 | 1: 950Mhz * 3 | 2: 1266Mhz 4 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx5700xt/card1/device/pp_force_state: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx5700xt/card1/device/pp_num_states: -------------------------------------------------------------------------------- 1 | states: 1 2 | 0 default 3 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx5700xt/card1/device/vbios_version: -------------------------------------------------------------------------------- 1 | 113-D1990103-O09 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx5700xt/card1/device/vendor: -------------------------------------------------------------------------------- 1 | 0x1002 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx580/ari_enabled: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx580/boot_vga: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx580/broken_parity_status: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx580/card0/device/dma_mask_bits: -------------------------------------------------------------------------------- 1 | 40 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx580/card0/device/driver_override: -------------------------------------------------------------------------------- 1 | (null) 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx580/card0/device/enable: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx580/card0/device/gpu_busy_percent: -------------------------------------------------------------------------------- 1 | 11 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx580/card0/device/hwmon/hwmon4/fan1_enable: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx580/card0/device/hwmon/hwmon4/fan1_input: -------------------------------------------------------------------------------- 1 | 595 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx580/card0/device/hwmon/hwmon4/fan1_max: -------------------------------------------------------------------------------- 1 | 3200 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx580/card0/device/hwmon/hwmon4/fan1_min: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx580/card0/device/hwmon/hwmon4/fan1_target: -------------------------------------------------------------------------------- 1 | 595 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx580/card0/device/hwmon/hwmon4/freq1_input: -------------------------------------------------------------------------------- 1 | 798080000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx580/card0/device/hwmon/hwmon4/freq1_label: -------------------------------------------------------------------------------- 1 | sclk 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx580/card0/device/hwmon/hwmon4/freq2_input: -------------------------------------------------------------------------------- 1 | 1750000000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx580/card0/device/hwmon/hwmon4/freq2_label: -------------------------------------------------------------------------------- 1 | mclk 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx580/card0/device/hwmon/hwmon4/in0_input: -------------------------------------------------------------------------------- 1 | 975 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx580/card0/device/hwmon/hwmon4/in0_label: -------------------------------------------------------------------------------- 1 | vddgfx 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx580/card0/device/hwmon/hwmon4/name: -------------------------------------------------------------------------------- 1 | amdgpu 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx580/card0/device/hwmon/hwmon4/power1_average: -------------------------------------------------------------------------------- 1 | 41045000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx580/card0/device/hwmon/hwmon4/power1_cap: -------------------------------------------------------------------------------- 1 | 155000000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx580/card0/device/hwmon/hwmon4/power1_cap_default: -------------------------------------------------------------------------------- 1 | 155000000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx580/card0/device/hwmon/hwmon4/power1_cap_max: -------------------------------------------------------------------------------- 1 | 201000000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx580/card0/device/hwmon/hwmon4/power1_cap_min: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx580/card0/device/hwmon/hwmon4/power1_label: -------------------------------------------------------------------------------- 1 | PPT 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx580/card0/device/hwmon/hwmon4/pwm1: -------------------------------------------------------------------------------- 1 | 35 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx580/card0/device/hwmon/hwmon4/pwm1_enable: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx580/card0/device/hwmon/hwmon4/pwm1_max: -------------------------------------------------------------------------------- 1 | 255 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx580/card0/device/hwmon/hwmon4/pwm1_min: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx580/card0/device/hwmon/hwmon4/temp1_crit: -------------------------------------------------------------------------------- 1 | 94000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx580/card0/device/hwmon/hwmon4/temp1_crit_hyst: -------------------------------------------------------------------------------- 1 | -273150 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx580/card0/device/hwmon/hwmon4/temp1_input: -------------------------------------------------------------------------------- 1 | 44000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx580/card0/device/hwmon/hwmon4/temp1_label: -------------------------------------------------------------------------------- 1 | edge 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx580/card0/device/local_cpulist: -------------------------------------------------------------------------------- 1 | 0-15 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx580/card0/device/local_cpus: -------------------------------------------------------------------------------- 1 | 0000ffff 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx580/card0/device/max_link_speed: -------------------------------------------------------------------------------- 1 | 8.0 GT/s PCIe 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx580/card0/device/max_link_width: -------------------------------------------------------------------------------- 1 | 16 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx580/card0/device/mem_busy_percent: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx580/card0/device/mem_info_gtt_total: -------------------------------------------------------------------------------- 1 | 8342712320 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx580/card0/device/mem_info_gtt_used: -------------------------------------------------------------------------------- 1 | 92377088 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx580/card0/device/mem_info_preempt_used: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx580/card0/device/mem_info_vis_vram_total: -------------------------------------------------------------------------------- 1 | 268435456 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx580/card0/device/mem_info_vis_vram_used: -------------------------------------------------------------------------------- 1 | 150302720 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx580/card0/device/mem_info_vram_total: -------------------------------------------------------------------------------- 1 | 4294967296 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx580/card0/device/mem_info_vram_used: -------------------------------------------------------------------------------- 1 | 536870912 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx580/card0/device/mem_info_vram_vendor: -------------------------------------------------------------------------------- 1 | unknown 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx580/card0/device/numa_node: -------------------------------------------------------------------------------- 1 | -1 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx580/card0/device/pcie_bw: -------------------------------------------------------------------------------- 1 | 11886 2528 256 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx580/card0/device/pcie_replay_count: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx580/card0/device/power_dpm_force_performance_level: -------------------------------------------------------------------------------- 1 | auto 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx580/card0/device/power_dpm_state: -------------------------------------------------------------------------------- 1 | performance 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx580/card0/device/power_state: -------------------------------------------------------------------------------- 1 | D0 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx580/card0/device/pp_cur_state: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx580/card0/device/pp_dpm_mclk: -------------------------------------------------------------------------------- 1 | 0: 300Mhz 2 | 1: 1000Mhz 3 | 2: 1750Mhz * 4 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx580/card0/device/pp_dpm_pcie: -------------------------------------------------------------------------------- 1 | 0: 2.5GT/s, x8 2 | 1: 8.0GT/s, x16 * 3 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx580/card0/device/pp_force_state: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx580/card0/device/pp_mclk_od: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx580/card0/device/pp_num_states: -------------------------------------------------------------------------------- 1 | states: 2 2 | 0 boot 3 | 1 performance 4 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx580/card0/device/pp_sclk_od: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx580/card0/device/product_name: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx580/card0/device/product_number: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx580/card0/device/reset_method: -------------------------------------------------------------------------------- 1 | bus 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx580/card0/device/revision: -------------------------------------------------------------------------------- 1 | 0xe7 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx580/card0/device/serial_number: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx580/card0/device/subsystem_device: -------------------------------------------------------------------------------- 1 | 0xe387 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx580/card0/device/subsystem_vendor: -------------------------------------------------------------------------------- 1 | 0x1da2 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx580/card0/device/vbios_version: -------------------------------------------------------------------------------- 1 | 113-1E3871U-O4C 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx580/card0/device/vendor: -------------------------------------------------------------------------------- 1 | 0x1002 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx580/class: -------------------------------------------------------------------------------- 1 | 0x030000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx580/consistent_dma_mask_bits: -------------------------------------------------------------------------------- 1 | 40 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx580/current_link_speed: -------------------------------------------------------------------------------- 1 | 8.0 GT/s PCIe 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx580/current_link_width: -------------------------------------------------------------------------------- 1 | 16 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx580/d3cold_allowed: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx580/device: -------------------------------------------------------------------------------- 1 | 0x67df 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx6600/card1/dev: -------------------------------------------------------------------------------- 1 | 226:1 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx6600/card1/device/current_link_speed: -------------------------------------------------------------------------------- 1 | 16.0 GT/s PCIe 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx6600/card1/device/current_link_width: -------------------------------------------------------------------------------- 1 | 16 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx6600/card1/device/gpu_busy_percent: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx6600/card1/device/hwmon/hwmon4/fan1_enable: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx6600/card1/device/hwmon/hwmon4/fan1_input: -------------------------------------------------------------------------------- 1 | 1395 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx6600/card1/device/hwmon/hwmon4/fan1_max: -------------------------------------------------------------------------------- 1 | 3100 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx6600/card1/device/hwmon/hwmon4/fan1_min: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx6600/card1/device/hwmon/hwmon4/fan1_target: -------------------------------------------------------------------------------- 1 | 1395 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx6600/card1/device/hwmon/hwmon4/freq1_input: -------------------------------------------------------------------------------- 1 | 20000000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx6600/card1/device/hwmon/hwmon4/freq1_label: -------------------------------------------------------------------------------- 1 | sclk 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx6600/card1/device/hwmon/hwmon4/freq2_input: -------------------------------------------------------------------------------- 1 | 96000000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx6600/card1/device/hwmon/hwmon4/freq2_label: -------------------------------------------------------------------------------- 1 | mclk 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx6600/card1/device/hwmon/hwmon4/in0_input: -------------------------------------------------------------------------------- 1 | 1000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx6600/card1/device/hwmon/hwmon4/in0_label: -------------------------------------------------------------------------------- 1 | vddgfx 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx6600/card1/device/hwmon/hwmon4/name: -------------------------------------------------------------------------------- 1 | amdgpu 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx6600/card1/device/hwmon/hwmon4/power/control: -------------------------------------------------------------------------------- 1 | auto 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx6600/card1/device/hwmon/hwmon4/power/runtime_active_time: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx6600/card1/device/hwmon/hwmon4/power/runtime_status: -------------------------------------------------------------------------------- 1 | unsupported 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx6600/card1/device/hwmon/hwmon4/power/runtime_suspended_time: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx6600/card1/device/hwmon/hwmon4/power1_average: -------------------------------------------------------------------------------- 1 | 3000000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx6600/card1/device/hwmon/hwmon4/power1_cap: -------------------------------------------------------------------------------- 1 | 120000000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx6600/card1/device/hwmon/hwmon4/power1_cap_default: -------------------------------------------------------------------------------- 1 | 100000000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx6600/card1/device/hwmon/hwmon4/power1_cap_max: -------------------------------------------------------------------------------- 1 | 120000000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx6600/card1/device/hwmon/hwmon4/power1_cap_min: -------------------------------------------------------------------------------- 1 | 94000000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx6600/card1/device/hwmon/hwmon4/power1_label: -------------------------------------------------------------------------------- 1 | PPT 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx6600/card1/device/hwmon/hwmon4/pwm1: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx6600/card1/device/hwmon/hwmon4/pwm1_enable: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx6600/card1/device/hwmon/hwmon4/pwm1_max: -------------------------------------------------------------------------------- 1 | 255 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx6600/card1/device/hwmon/hwmon4/pwm1_min: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx6600/card1/device/hwmon/hwmon4/temp1_crit: -------------------------------------------------------------------------------- 1 | 100000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx6600/card1/device/hwmon/hwmon4/temp1_crit_hyst: -------------------------------------------------------------------------------- 1 | -273150 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx6600/card1/device/hwmon/hwmon4/temp1_emergency: -------------------------------------------------------------------------------- 1 | 105000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx6600/card1/device/hwmon/hwmon4/temp1_input: -------------------------------------------------------------------------------- 1 | 28000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx6600/card1/device/hwmon/hwmon4/temp1_label: -------------------------------------------------------------------------------- 1 | edge 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx6600/card1/device/hwmon/hwmon4/temp2_crit: -------------------------------------------------------------------------------- 1 | 110000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx6600/card1/device/hwmon/hwmon4/temp2_crit_hyst: -------------------------------------------------------------------------------- 1 | -273150 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx6600/card1/device/hwmon/hwmon4/temp2_emergency: -------------------------------------------------------------------------------- 1 | 115000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx6600/card1/device/hwmon/hwmon4/temp2_input: -------------------------------------------------------------------------------- 1 | 28000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx6600/card1/device/hwmon/hwmon4/temp2_label: -------------------------------------------------------------------------------- 1 | junction 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx6600/card1/device/hwmon/hwmon4/temp3_crit: -------------------------------------------------------------------------------- 1 | 100000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx6600/card1/device/hwmon/hwmon4/temp3_crit_hyst: -------------------------------------------------------------------------------- 1 | -273150 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx6600/card1/device/hwmon/hwmon4/temp3_emergency: -------------------------------------------------------------------------------- 1 | 105000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx6600/card1/device/hwmon/hwmon4/temp3_input: -------------------------------------------------------------------------------- 1 | 26000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx6600/card1/device/hwmon/hwmon4/temp3_label: -------------------------------------------------------------------------------- 1 | mem 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx6600/card1/device/pp_cur_state: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx6600/card1/device/pp_dpm_sclk: -------------------------------------------------------------------------------- 1 | 0: 500Mhz 2 | 1: 2605Mhz * 3 | 2: 2700Mhz 4 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx6600/card1/device/pp_dpm_socclk: -------------------------------------------------------------------------------- 1 | 0: 417Mhz 2 | 1: 640Mhz * 3 | 2: 1200Mhz 4 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx6600/card1/device/pp_force_state: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx6600/card1/device/pp_num_states: -------------------------------------------------------------------------------- 1 | states: 1 2 | 0 default 3 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx6600/card1/device/vbios_version: -------------------------------------------------------------------------------- 1 | 113-D534-R66E 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx6600/card1/device/vendor: -------------------------------------------------------------------------------- 1 | 0x1002 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx6600xt/card0/device/current_link_speed: -------------------------------------------------------------------------------- 1 | 16.0 GT/s PCIe 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx6600xt/card0/device/current_link_width: -------------------------------------------------------------------------------- 1 | 16 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx6600xt/card0/device/gpu_busy_percent: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx6600xt/card0/device/hwmon/hwmon4/fan1_enable: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx6600xt/card0/device/hwmon/hwmon4/fan1_input: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx6600xt/card0/device/hwmon/hwmon4/fan1_max: -------------------------------------------------------------------------------- 1 | 3300 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx6600xt/card0/device/hwmon/hwmon4/fan1_min: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx6600xt/card0/device/hwmon/hwmon4/fan1_target: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx6600xt/card0/device/hwmon/hwmon4/freq1_input: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx6600xt/card0/device/hwmon/hwmon4/freq1_label: -------------------------------------------------------------------------------- 1 | sclk 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx6600xt/card0/device/hwmon/hwmon4/freq2_input: -------------------------------------------------------------------------------- 1 | 96000000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx6600xt/card0/device/hwmon/hwmon4/freq2_label: -------------------------------------------------------------------------------- 1 | mclk 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx6600xt/card0/device/hwmon/hwmon4/in0_input: -------------------------------------------------------------------------------- 1 | 6 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx6600xt/card0/device/hwmon/hwmon4/in0_label: -------------------------------------------------------------------------------- 1 | vddgfx 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx6600xt/card0/device/hwmon/hwmon4/name: -------------------------------------------------------------------------------- 1 | amdgpu 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx6600xt/card0/device/hwmon/hwmon4/power1_average: -------------------------------------------------------------------------------- 1 | 3000000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx6600xt/card0/device/hwmon/hwmon4/power1_cap: -------------------------------------------------------------------------------- 1 | 100000000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx6600xt/card0/device/hwmon/hwmon4/power1_cap_default: -------------------------------------------------------------------------------- 1 | 100000000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx6600xt/card0/device/hwmon/hwmon4/power1_cap_max: -------------------------------------------------------------------------------- 1 | 100000000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx6600xt/card0/device/hwmon/hwmon4/power1_cap_min: -------------------------------------------------------------------------------- 1 | 94000000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx6600xt/card0/device/hwmon/hwmon4/power1_label: -------------------------------------------------------------------------------- 1 | PPT 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx6600xt/card0/device/hwmon/hwmon4/pwm1: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx6600xt/card0/device/hwmon/hwmon4/pwm1_enable: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx6600xt/card0/device/hwmon/hwmon4/pwm1_max: -------------------------------------------------------------------------------- 1 | 255 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx6600xt/card0/device/hwmon/hwmon4/pwm1_min: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx6600xt/card0/device/hwmon/hwmon4/temp1_crit: -------------------------------------------------------------------------------- 1 | 100000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx6600xt/card0/device/hwmon/hwmon4/temp1_crit_hyst: -------------------------------------------------------------------------------- 1 | -273150 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx6600xt/card0/device/hwmon/hwmon4/temp1_emergency: -------------------------------------------------------------------------------- 1 | 105000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx6600xt/card0/device/hwmon/hwmon4/temp1_input: -------------------------------------------------------------------------------- 1 | 35000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx6600xt/card0/device/hwmon/hwmon4/temp1_label: -------------------------------------------------------------------------------- 1 | edge 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx6600xt/card0/device/hwmon/hwmon4/temp2_crit: -------------------------------------------------------------------------------- 1 | 110000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx6600xt/card0/device/hwmon/hwmon4/temp2_crit_hyst: -------------------------------------------------------------------------------- 1 | -273150 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx6600xt/card0/device/hwmon/hwmon4/temp2_emergency: -------------------------------------------------------------------------------- 1 | 115000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx6600xt/card0/device/hwmon/hwmon4/temp2_input: -------------------------------------------------------------------------------- 1 | 35000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx6600xt/card0/device/hwmon/hwmon4/temp2_label: -------------------------------------------------------------------------------- 1 | junction 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx6600xt/card0/device/hwmon/hwmon4/temp3_crit: -------------------------------------------------------------------------------- 1 | 100000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx6600xt/card0/device/hwmon/hwmon4/temp3_crit_hyst: -------------------------------------------------------------------------------- 1 | -273150 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx6600xt/card0/device/hwmon/hwmon4/temp3_emergency: -------------------------------------------------------------------------------- 1 | 105000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx6600xt/card0/device/hwmon/hwmon4/temp3_input: -------------------------------------------------------------------------------- 1 | 36000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx6600xt/card0/device/hwmon/hwmon4/temp3_label: -------------------------------------------------------------------------------- 1 | mem 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx6600xt/card0/device/pp_cur_state: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx6600xt/card0/device/pp_dpm_sclk: -------------------------------------------------------------------------------- 1 | 0: 0Mhz * 2 | 1: 0Mhz * 3 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx6600xt/card0/device/pp_dpm_socclk: -------------------------------------------------------------------------------- 1 | 0: 417Mhz 2 | 1: 640Mhz * 3 | 2: 1200Mhz 4 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx6600xt/card0/device/pp_force_state: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx6600xt/card0/device/pp_num_states: -------------------------------------------------------------------------------- 1 | states: 1 2 | 0 default 3 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx6600xt/card0/device/vbios_version: -------------------------------------------------------------------------------- 1 | 113-23L86HMD2-D02 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx6600xt/card0/device/vendor: -------------------------------------------------------------------------------- 1 | 0x1002 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx7600s/card1/dev: -------------------------------------------------------------------------------- 1 | 226:1 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx7600s/card1/device/current_link_speed: -------------------------------------------------------------------------------- 1 | 16.0 GT/s PCIe 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx7600s/card1/device/current_link_width: -------------------------------------------------------------------------------- 1 | 8 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx7600s/card1/device/gpu_busy_percent: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx7600s/card1/device/hwmon/hwmon5/fan1_enable: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx7600s/card1/device/hwmon/hwmon5/fan1_input: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx7600s/card1/device/hwmon/hwmon5/fan1_max: -------------------------------------------------------------------------------- 1 | 4900 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx7600s/card1/device/hwmon/hwmon5/fan1_min: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx7600s/card1/device/hwmon/hwmon5/fan1_target: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx7600s/card1/device/hwmon/hwmon5/freq1_input: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx7600s/card1/device/hwmon/hwmon5/freq1_label: -------------------------------------------------------------------------------- 1 | sclk 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx7600s/card1/device/hwmon/hwmon5/freq2_input: -------------------------------------------------------------------------------- 1 | 96000000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx7600s/card1/device/hwmon/hwmon5/freq2_label: -------------------------------------------------------------------------------- 1 | mclk 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx7600s/card1/device/hwmon/hwmon5/in0_input: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx7600s/card1/device/hwmon/hwmon5/in0_label: -------------------------------------------------------------------------------- 1 | vddgfx 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx7600s/card1/device/hwmon/hwmon5/name: -------------------------------------------------------------------------------- 1 | amdgpu 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx7600s/card1/device/hwmon/hwmon5/power/control: -------------------------------------------------------------------------------- 1 | auto 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx7600s/card1/device/hwmon/hwmon5/power/runtime_active_time: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx7600s/card1/device/hwmon/hwmon5/power/runtime_status: -------------------------------------------------------------------------------- 1 | unsupported 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx7600s/card1/device/hwmon/hwmon5/power/runtime_suspended_time: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx7600s/card1/device/hwmon/hwmon5/power1_average: -------------------------------------------------------------------------------- 1 | 1000000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx7600s/card1/device/hwmon/hwmon5/power1_cap: -------------------------------------------------------------------------------- 1 | 95000000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx7600s/card1/device/hwmon/hwmon5/power1_cap_default: -------------------------------------------------------------------------------- 1 | 95000000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx7600s/card1/device/hwmon/hwmon5/power1_cap_max: -------------------------------------------------------------------------------- 1 | 95000000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx7600s/card1/device/hwmon/hwmon5/power1_cap_min: -------------------------------------------------------------------------------- 1 | 95000000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx7600s/card1/device/hwmon/hwmon5/power1_label: -------------------------------------------------------------------------------- 1 | PPT 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx7600s/card1/device/hwmon/hwmon5/pwm1: -------------------------------------------------------------------------------- 1 | 76 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx7600s/card1/device/hwmon/hwmon5/pwm1_enable: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx7600s/card1/device/hwmon/hwmon5/pwm1_max: -------------------------------------------------------------------------------- 1 | 255 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx7600s/card1/device/hwmon/hwmon5/pwm1_min: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx7600s/card1/device/hwmon/hwmon5/temp1_crit: -------------------------------------------------------------------------------- 1 | 100000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx7600s/card1/device/hwmon/hwmon5/temp1_crit_hyst: -------------------------------------------------------------------------------- 1 | -273150 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx7600s/card1/device/hwmon/hwmon5/temp1_emergency: -------------------------------------------------------------------------------- 1 | 105000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx7600s/card1/device/hwmon/hwmon5/temp1_input: -------------------------------------------------------------------------------- 1 | 53000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx7600s/card1/device/hwmon/hwmon5/temp1_label: -------------------------------------------------------------------------------- 1 | edge 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx7600s/card1/device/hwmon/hwmon5/temp2_crit: -------------------------------------------------------------------------------- 1 | 100000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx7600s/card1/device/hwmon/hwmon5/temp2_crit_hyst: -------------------------------------------------------------------------------- 1 | -273150 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx7600s/card1/device/hwmon/hwmon5/temp2_emergency: -------------------------------------------------------------------------------- 1 | 105000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx7600s/card1/device/hwmon/hwmon5/temp2_input: -------------------------------------------------------------------------------- 1 | 54000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx7600s/card1/device/hwmon/hwmon5/temp2_label: -------------------------------------------------------------------------------- 1 | junction 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx7600s/card1/device/hwmon/hwmon5/temp3_crit: -------------------------------------------------------------------------------- 1 | 105000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx7600s/card1/device/hwmon/hwmon5/temp3_crit_hyst: -------------------------------------------------------------------------------- 1 | -273150 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx7600s/card1/device/hwmon/hwmon5/temp3_emergency: -------------------------------------------------------------------------------- 1 | 110000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx7600s/card1/device/hwmon/hwmon5/temp3_input: -------------------------------------------------------------------------------- 1 | 60000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx7600s/card1/device/hwmon/hwmon5/temp3_label: -------------------------------------------------------------------------------- 1 | mem 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx7600s/card1/device/mem_info_vram_vendor: -------------------------------------------------------------------------------- 1 | samsung 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx7600s/card1/device/power_dpm_force_performance_level: -------------------------------------------------------------------------------- 1 | manual 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx7600s/card1/device/pp_cur_state: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx7600s/card1/device/pp_dpm_sclk: -------------------------------------------------------------------------------- 1 | 0: 255Mhz 2 | 1: 0Mhz * 3 | 2: 1841Mhz 4 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx7600s/card1/device/pp_dpm_socclk: -------------------------------------------------------------------------------- 1 | 0: 417Mhz 2 | 1: 711Mhz * 3 | 2: 1280Mhz 4 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx7600s/card1/device/pp_force_state: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx7600s/card1/device/pp_num_states: -------------------------------------------------------------------------------- 1 | states: 1 2 | 0 default 3 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx7600s/card1/device/vbios_version: -------------------------------------------------------------------------------- 1 | 113-BRT112125.001 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx7600s/card1/device/vendor: -------------------------------------------------------------------------------- 1 | 0x1002 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx7700s/card1/device/current_link_speed: -------------------------------------------------------------------------------- 1 | 16.0 GT/s PCIe 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx7700s/card1/device/current_link_width: -------------------------------------------------------------------------------- 1 | 8 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx7700s/card1/device/gpu_busy_percent: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx7700s/card1/device/hwmon/hwmon9/fan1_enable: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx7700s/card1/device/hwmon/hwmon9/fan1_input: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx7700s/card1/device/hwmon/hwmon9/fan1_max: -------------------------------------------------------------------------------- 1 | 4900 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx7700s/card1/device/hwmon/hwmon9/fan1_min: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx7700s/card1/device/hwmon/hwmon9/fan1_target: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx7700s/card1/device/hwmon/hwmon9/freq1_input: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx7700s/card1/device/hwmon/hwmon9/freq1_label: -------------------------------------------------------------------------------- 1 | sclk 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx7700s/card1/device/hwmon/hwmon9/freq2_input: -------------------------------------------------------------------------------- 1 | 96000000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx7700s/card1/device/hwmon/hwmon9/freq2_label: -------------------------------------------------------------------------------- 1 | mclk 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx7700s/card1/device/hwmon/hwmon9/in0_input: -------------------------------------------------------------------------------- 1 | 18 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx7700s/card1/device/hwmon/hwmon9/in0_label: -------------------------------------------------------------------------------- 1 | vddgfx 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx7700s/card1/device/hwmon/hwmon9/name: -------------------------------------------------------------------------------- 1 | amdgpu 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx7700s/card1/device/hwmon/hwmon9/power1_average: -------------------------------------------------------------------------------- 1 | 1000000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx7700s/card1/device/hwmon/hwmon9/power1_cap: -------------------------------------------------------------------------------- 1 | 100000000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx7700s/card1/device/hwmon/hwmon9/power1_cap_default: -------------------------------------------------------------------------------- 1 | 100000000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx7700s/card1/device/hwmon/hwmon9/power1_cap_max: -------------------------------------------------------------------------------- 1 | 120000000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx7700s/card1/device/hwmon/hwmon9/power1_cap_min: -------------------------------------------------------------------------------- 1 | 100000000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx7700s/card1/device/hwmon/hwmon9/power1_label: -------------------------------------------------------------------------------- 1 | PPT 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx7700s/card1/device/hwmon/hwmon9/pwm1: -------------------------------------------------------------------------------- 1 | 76 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx7700s/card1/device/hwmon/hwmon9/pwm1_enable: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx7700s/card1/device/hwmon/hwmon9/pwm1_max: -------------------------------------------------------------------------------- 1 | 255 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx7700s/card1/device/hwmon/hwmon9/pwm1_min: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx7700s/card1/device/hwmon/hwmon9/temp1_crit: -------------------------------------------------------------------------------- 1 | 100000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx7700s/card1/device/hwmon/hwmon9/temp1_crit_hyst: -------------------------------------------------------------------------------- 1 | -273150 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx7700s/card1/device/hwmon/hwmon9/temp1_emergency: -------------------------------------------------------------------------------- 1 | 105000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx7700s/card1/device/hwmon/hwmon9/temp1_input: -------------------------------------------------------------------------------- 1 | 34000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx7700s/card1/device/hwmon/hwmon9/temp1_label: -------------------------------------------------------------------------------- 1 | edge 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx7700s/card1/device/hwmon/hwmon9/temp2_crit: -------------------------------------------------------------------------------- 1 | 100000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx7700s/card1/device/hwmon/hwmon9/temp2_crit_hyst: -------------------------------------------------------------------------------- 1 | -273150 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx7700s/card1/device/hwmon/hwmon9/temp2_emergency: -------------------------------------------------------------------------------- 1 | 105000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx7700s/card1/device/hwmon/hwmon9/temp2_input: -------------------------------------------------------------------------------- 1 | 34000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx7700s/card1/device/hwmon/hwmon9/temp2_label: -------------------------------------------------------------------------------- 1 | junction 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx7700s/card1/device/hwmon/hwmon9/temp3_crit: -------------------------------------------------------------------------------- 1 | 105000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx7700s/card1/device/hwmon/hwmon9/temp3_crit_hyst: -------------------------------------------------------------------------------- 1 | -273150 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx7700s/card1/device/hwmon/hwmon9/temp3_emergency: -------------------------------------------------------------------------------- 1 | 110000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx7700s/card1/device/hwmon/hwmon9/temp3_input: -------------------------------------------------------------------------------- 1 | 42000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx7700s/card1/device/hwmon/hwmon9/temp3_label: -------------------------------------------------------------------------------- 1 | mem 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx7700s/card1/device/power_dpm_force_performance_level: -------------------------------------------------------------------------------- 1 | auto -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx7700s/card1/device/pp_cur_state: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx7700s/card1/device/pp_dpm_sclk: -------------------------------------------------------------------------------- 1 | 0: 255Mhz 2 | 1: 0Mhz * 3 | 2: 2208Mhz 4 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx7700s/card1/device/pp_dpm_socclk: -------------------------------------------------------------------------------- 1 | 0: 417Mhz 2 | 1: 492Mhz * 3 | 2: 1280Mhz 4 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx7700s/card1/device/pp_force_state: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx7700s/card1/device/pp_num_states: -------------------------------------------------------------------------------- 1 | states: 1 2 | 0 default 3 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx7700s/card1/device/pp_od_clk_voltage: -------------------------------------------------------------------------------- 1 | r 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx7700s/card1/device/vbios_version: -------------------------------------------------------------------------------- 1 | 113-BRT125778.001 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx7700s/card1/device/vendor: -------------------------------------------------------------------------------- 1 | 0x1002 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx7800xt/card1/dev: -------------------------------------------------------------------------------- 1 | 226:1 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx7800xt/card1/device/current_link_speed: -------------------------------------------------------------------------------- 1 | 16.0 GT/s PCIe 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx7800xt/card1/device/current_link_width: -------------------------------------------------------------------------------- 1 | 16 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx7800xt/card1/device/gpu_busy_percent: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx7800xt/card1/device/hwmon/hwmon4/fan1_enable: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx7800xt/card1/device/hwmon/hwmon4/fan1_input: -------------------------------------------------------------------------------- 1 | 868 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx7800xt/card1/device/hwmon/hwmon4/fan1_max: -------------------------------------------------------------------------------- 1 | 3300 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx7800xt/card1/device/hwmon/hwmon4/fan1_min: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx7800xt/card1/device/hwmon/hwmon4/fan1_target: -------------------------------------------------------------------------------- 1 | 868 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx7800xt/card1/device/hwmon/hwmon4/freq1_input: -------------------------------------------------------------------------------- 1 | 2011000000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx7800xt/card1/device/hwmon/hwmon4/freq1_label: -------------------------------------------------------------------------------- 1 | sclk 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx7800xt/card1/device/hwmon/hwmon4/freq2_input: -------------------------------------------------------------------------------- 1 | 456000000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx7800xt/card1/device/hwmon/hwmon4/freq2_label: -------------------------------------------------------------------------------- 1 | mclk 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx7800xt/card1/device/hwmon/hwmon4/in0_input: -------------------------------------------------------------------------------- 1 | 985 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx7800xt/card1/device/hwmon/hwmon4/in0_label: -------------------------------------------------------------------------------- 1 | vddgfx 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx7800xt/card1/device/hwmon/hwmon4/name: -------------------------------------------------------------------------------- 1 | amdgpu 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx7800xt/card1/device/hwmon/hwmon4/power/control: -------------------------------------------------------------------------------- 1 | auto 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx7800xt/card1/device/hwmon/hwmon4/power/runtime_active_time: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx7800xt/card1/device/hwmon/hwmon4/power/runtime_status: -------------------------------------------------------------------------------- 1 | unsupported 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx7800xt/card1/device/hwmon/hwmon4/power/runtime_suspended_time: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx7800xt/card1/device/hwmon/hwmon4/power1_average: -------------------------------------------------------------------------------- 1 | 32000000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx7800xt/card1/device/hwmon/hwmon4/power1_cap: -------------------------------------------------------------------------------- 1 | 236000000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx7800xt/card1/device/hwmon/hwmon4/power1_cap_default: -------------------------------------------------------------------------------- 1 | 236000000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx7800xt/card1/device/hwmon/hwmon4/power1_cap_max: -------------------------------------------------------------------------------- 1 | 280000000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx7800xt/card1/device/hwmon/hwmon4/power1_cap_min: -------------------------------------------------------------------------------- 1 | 212000000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx7800xt/card1/device/hwmon/hwmon4/power1_label: -------------------------------------------------------------------------------- 1 | PPT 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx7800xt/card1/device/hwmon/hwmon4/pwm1: -------------------------------------------------------------------------------- 1 | 89 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx7800xt/card1/device/hwmon/hwmon4/pwm1_enable: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx7800xt/card1/device/hwmon/hwmon4/pwm1_max: -------------------------------------------------------------------------------- 1 | 255 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx7800xt/card1/device/hwmon/hwmon4/pwm1_min: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx7800xt/card1/device/hwmon/hwmon4/temp1_crit: -------------------------------------------------------------------------------- 1 | 100000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx7800xt/card1/device/hwmon/hwmon4/temp1_crit_hyst: -------------------------------------------------------------------------------- 1 | -273150 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx7800xt/card1/device/hwmon/hwmon4/temp1_emergency: -------------------------------------------------------------------------------- 1 | 105000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx7800xt/card1/device/hwmon/hwmon4/temp1_input: -------------------------------------------------------------------------------- 1 | 24000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx7800xt/card1/device/hwmon/hwmon4/temp1_label: -------------------------------------------------------------------------------- 1 | edge 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx7800xt/card1/device/hwmon/hwmon4/temp2_crit: -------------------------------------------------------------------------------- 1 | 110000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx7800xt/card1/device/hwmon/hwmon4/temp2_crit_hyst: -------------------------------------------------------------------------------- 1 | -273150 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx7800xt/card1/device/hwmon/hwmon4/temp2_emergency: -------------------------------------------------------------------------------- 1 | 115000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx7800xt/card1/device/hwmon/hwmon4/temp2_input: -------------------------------------------------------------------------------- 1 | 31000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx7800xt/card1/device/hwmon/hwmon4/temp2_label: -------------------------------------------------------------------------------- 1 | junction 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx7800xt/card1/device/hwmon/hwmon4/temp3_crit: -------------------------------------------------------------------------------- 1 | 108000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx7800xt/card1/device/hwmon/hwmon4/temp3_crit_hyst: -------------------------------------------------------------------------------- 1 | -273150 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx7800xt/card1/device/hwmon/hwmon4/temp3_emergency: -------------------------------------------------------------------------------- 1 | 113000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx7800xt/card1/device/hwmon/hwmon4/temp3_input: -------------------------------------------------------------------------------- 1 | 48000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx7800xt/card1/device/hwmon/hwmon4/temp3_label: -------------------------------------------------------------------------------- 1 | mem 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx7800xt/card1/device/mem_info_vram_vendor: -------------------------------------------------------------------------------- 1 | samsung 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx7800xt/card1/device/power_dpm_force_performance_level: -------------------------------------------------------------------------------- 1 | manual 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx7800xt/card1/device/pp_cur_state: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx7800xt/card1/device/pp_dpm_sclk: -------------------------------------------------------------------------------- 1 | 0: 500Mhz 2 | 1: 77Mhz * 3 | 2: 2254Mhz 4 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx7800xt/card1/device/pp_dpm_socclk: -------------------------------------------------------------------------------- 1 | 0: 300Mhz 2 | 1: 750Mhz * 3 | 2: 1500Mhz 4 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx7800xt/card1/device/pp_force_state: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx7800xt/card1/device/pp_num_states: -------------------------------------------------------------------------------- 1 | states: 1 2 | 0 default 3 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx7800xt/card1/device/vbios_version: -------------------------------------------------------------------------------- 1 | 113-EXT90249-100 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx7800xt/card1/device/vendor: -------------------------------------------------------------------------------- 1 | 0x1002 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx7900xtx/card0/device/current_link_speed: -------------------------------------------------------------------------------- 1 | 16.0 GT/s PCIe 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx7900xtx/card0/device/current_link_width: -------------------------------------------------------------------------------- 1 | 16 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx7900xtx/card0/device/gpu_busy_percent: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx7900xtx/card0/device/hwmon/hwmon8/fan1_enable: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx7900xtx/card0/device/hwmon/hwmon8/fan1_input: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx7900xtx/card0/device/hwmon/hwmon8/fan1_max: -------------------------------------------------------------------------------- 1 | 3200 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx7900xtx/card0/device/hwmon/hwmon8/fan1_min: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx7900xtx/card0/device/hwmon/hwmon8/fan1_target: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx7900xtx/card0/device/hwmon/hwmon8/freq1_input: -------------------------------------------------------------------------------- 1 | 31000000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx7900xtx/card0/device/hwmon/hwmon8/freq1_label: -------------------------------------------------------------------------------- 1 | sclk 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx7900xtx/card0/device/hwmon/hwmon8/freq2_input: -------------------------------------------------------------------------------- 1 | 1249000000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx7900xtx/card0/device/hwmon/hwmon8/freq2_label: -------------------------------------------------------------------------------- 1 | mclk 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx7900xtx/card0/device/hwmon/hwmon8/in0_input: -------------------------------------------------------------------------------- 1 | 686 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx7900xtx/card0/device/hwmon/hwmon8/in0_label: -------------------------------------------------------------------------------- 1 | vddgfx 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx7900xtx/card0/device/hwmon/hwmon8/power1_average: -------------------------------------------------------------------------------- 1 | 68000000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx7900xtx/card0/device/hwmon/hwmon8/power1_cap: -------------------------------------------------------------------------------- 1 | 290000000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx7900xtx/card0/device/hwmon/hwmon8/power1_cap_default: -------------------------------------------------------------------------------- 1 | 290000000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx7900xtx/card0/device/hwmon/hwmon8/power1_cap_max: -------------------------------------------------------------------------------- 1 | 333000000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx7900xtx/card0/device/hwmon/hwmon8/power1_cap_min: -------------------------------------------------------------------------------- 1 | 261000000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx7900xtx/card0/device/hwmon/hwmon8/power1_label: -------------------------------------------------------------------------------- 1 | PPT 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx7900xtx/card0/device/hwmon/hwmon8/pwm1: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx7900xtx/card0/device/hwmon/hwmon8/pwm1_enable: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx7900xtx/card0/device/hwmon/hwmon8/pwm1_max: -------------------------------------------------------------------------------- 1 | 255 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx7900xtx/card0/device/hwmon/hwmon8/pwm1_min: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx7900xtx/card0/device/hwmon/hwmon8/temp1_crit: -------------------------------------------------------------------------------- 1 | 100000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx7900xtx/card0/device/hwmon/hwmon8/temp1_crit_hyst: -------------------------------------------------------------------------------- 1 | -273150 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx7900xtx/card0/device/hwmon/hwmon8/temp1_emergency: -------------------------------------------------------------------------------- 1 | 105000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx7900xtx/card0/device/hwmon/hwmon8/temp1_input: -------------------------------------------------------------------------------- 1 | 53000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx7900xtx/card0/device/hwmon/hwmon8/temp1_label: -------------------------------------------------------------------------------- 1 | edge 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx7900xtx/card0/device/hwmon/hwmon8/temp2_crit: -------------------------------------------------------------------------------- 1 | 110000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx7900xtx/card0/device/hwmon/hwmon8/temp2_crit_hyst: -------------------------------------------------------------------------------- 1 | -273150 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx7900xtx/card0/device/hwmon/hwmon8/temp2_emergency: -------------------------------------------------------------------------------- 1 | 115000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx7900xtx/card0/device/hwmon/hwmon8/temp2_input: -------------------------------------------------------------------------------- 1 | 61000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx7900xtx/card0/device/hwmon/hwmon8/temp2_label: -------------------------------------------------------------------------------- 1 | junction 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx7900xtx/card0/device/hwmon/hwmon8/temp3_crit: -------------------------------------------------------------------------------- 1 | 108000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx7900xtx/card0/device/hwmon/hwmon8/temp3_crit_hyst: -------------------------------------------------------------------------------- 1 | -273150 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx7900xtx/card0/device/hwmon/hwmon8/temp3_emergency: -------------------------------------------------------------------------------- 1 | 113000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx7900xtx/card0/device/hwmon/hwmon8/temp3_input: -------------------------------------------------------------------------------- 1 | 68000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx7900xtx/card0/device/hwmon/hwmon8/temp3_label: -------------------------------------------------------------------------------- 1 | mem 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx7900xtx/card0/device/pp_cur_state: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx7900xtx/card0/device/pp_dpm_sclk: -------------------------------------------------------------------------------- 1 | 0: 500Mhz 2 | 1: 31Mhz * 3 | 2: 2219Mhz 4 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx7900xtx/card0/device/pp_dpm_socclk: -------------------------------------------------------------------------------- 1 | 0: 500Mhz 2 | 1: 1500Mhz * 3 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx7900xtx/card0/device/pp_force_state: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx7900xtx/card0/device/pp_num_states: -------------------------------------------------------------------------------- 1 | states: 1 2 | 0 default 3 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx7900xtx/card0/device/vbios_version: -------------------------------------------------------------------------------- 1 | 113-D70401XT-N11 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx7900xtx/card0/device/vendor: -------------------------------------------------------------------------------- 1 | 0x1002 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx9070/card1/dev: -------------------------------------------------------------------------------- 1 | 226:1 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx9070/card1/device/current_link_speed: -------------------------------------------------------------------------------- 1 | 32.0 GT/s PCIe 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx9070/card1/device/current_link_width: -------------------------------------------------------------------------------- 1 | 16 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx9070/card1/device/gpu_busy_percent: -------------------------------------------------------------------------------- 1 | 25 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx9070/card1/device/hwmon/hwmon2/fan1_input: -------------------------------------------------------------------------------- 1 | 1944 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx9070/card1/device/hwmon/hwmon2/fan1_max: -------------------------------------------------------------------------------- 1 | 6000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx9070/card1/device/hwmon/hwmon2/fan1_min: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx9070/card1/device/hwmon/hwmon2/fan1_target: -------------------------------------------------------------------------------- 1 | 1944 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx9070/card1/device/hwmon/hwmon2/freq1_input: -------------------------------------------------------------------------------- 1 | 900000000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx9070/card1/device/hwmon/hwmon2/freq1_label: -------------------------------------------------------------------------------- 1 | sclk 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx9070/card1/device/hwmon/hwmon2/freq2_input: -------------------------------------------------------------------------------- 1 | 1124000000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx9070/card1/device/hwmon/hwmon2/freq2_label: -------------------------------------------------------------------------------- 1 | mclk 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx9070/card1/device/hwmon/hwmon2/in0_input: -------------------------------------------------------------------------------- 1 | 790 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx9070/card1/device/hwmon/hwmon2/in0_label: -------------------------------------------------------------------------------- 1 | vddgfx 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx9070/card1/device/hwmon/hwmon2/name: -------------------------------------------------------------------------------- 1 | amdgpu 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx9070/card1/device/hwmon/hwmon2/power/control: -------------------------------------------------------------------------------- 1 | auto 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx9070/card1/device/hwmon/hwmon2/power/runtime_active_time: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx9070/card1/device/hwmon/hwmon2/power/runtime_status: -------------------------------------------------------------------------------- 1 | unsupported 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx9070/card1/device/hwmon/hwmon2/power/runtime_suspended_time: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx9070/card1/device/hwmon/hwmon2/power1_average: -------------------------------------------------------------------------------- 1 | 49000000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx9070/card1/device/hwmon/hwmon2/power1_cap: -------------------------------------------------------------------------------- 1 | 200000000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx9070/card1/device/hwmon/hwmon2/power1_cap_default: -------------------------------------------------------------------------------- 1 | 220000000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx9070/card1/device/hwmon/hwmon2/power1_cap_max: -------------------------------------------------------------------------------- 1 | 245000000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx9070/card1/device/hwmon/hwmon2/power1_cap_min: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx9070/card1/device/hwmon/hwmon2/power1_label: -------------------------------------------------------------------------------- 1 | PPT 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx9070/card1/device/hwmon/hwmon2/pwm1: -------------------------------------------------------------------------------- 1 | 117 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx9070/card1/device/hwmon/hwmon2/pwm1_max: -------------------------------------------------------------------------------- 1 | 255 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx9070/card1/device/hwmon/hwmon2/pwm1_min: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx9070/card1/device/hwmon/hwmon2/temp1_crit: -------------------------------------------------------------------------------- 1 | 110000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx9070/card1/device/hwmon/hwmon2/temp1_crit_hyst: -------------------------------------------------------------------------------- 1 | -273150 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx9070/card1/device/hwmon/hwmon2/temp1_emergency: -------------------------------------------------------------------------------- 1 | 115000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx9070/card1/device/hwmon/hwmon2/temp1_input: -------------------------------------------------------------------------------- 1 | 48000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx9070/card1/device/hwmon/hwmon2/temp1_label: -------------------------------------------------------------------------------- 1 | edge 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx9070/card1/device/hwmon/hwmon2/temp2_crit: -------------------------------------------------------------------------------- 1 | 110000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx9070/card1/device/hwmon/hwmon2/temp2_crit_hyst: -------------------------------------------------------------------------------- 1 | -273150 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx9070/card1/device/hwmon/hwmon2/temp2_emergency: -------------------------------------------------------------------------------- 1 | 115000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx9070/card1/device/hwmon/hwmon2/temp2_input: -------------------------------------------------------------------------------- 1 | 52000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx9070/card1/device/hwmon/hwmon2/temp2_label: -------------------------------------------------------------------------------- 1 | junction 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx9070/card1/device/hwmon/hwmon2/temp3_crit: -------------------------------------------------------------------------------- 1 | 108000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx9070/card1/device/hwmon/hwmon2/temp3_crit_hyst: -------------------------------------------------------------------------------- 1 | -273150 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx9070/card1/device/hwmon/hwmon2/temp3_emergency: -------------------------------------------------------------------------------- 1 | 113000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx9070/card1/device/hwmon/hwmon2/temp3_input: -------------------------------------------------------------------------------- 1 | 72000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx9070/card1/device/hwmon/hwmon2/temp3_label: -------------------------------------------------------------------------------- 1 | mem 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx9070/card1/device/mem_info_vram_vendor: -------------------------------------------------------------------------------- 1 | hynix 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx9070/card1/device/power_dpm_force_performance_level: -------------------------------------------------------------------------------- 1 | auto 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx9070/card1/device/pp_cur_state: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx9070/card1/device/pp_dpm_sclk: -------------------------------------------------------------------------------- 1 | 0: 500Mhz 2 | 1: 789Mhz * 3 | 2: 2070Mhz 4 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx9070/card1/device/pp_force_state: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx9070/card1/device/pp_num_states: -------------------------------------------------------------------------------- 1 | states: 1 2 | 0 default 3 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx9070/card1/device/vbios_version: -------------------------------------------------------------------------------- 1 | 113-2E490TX-US2 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx9070/card1/device/vendor: -------------------------------------------------------------------------------- 1 | 0x1002 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx9070xt/card1/dev: -------------------------------------------------------------------------------- 1 | 226:1 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx9070xt/card1/device/current_link_speed: -------------------------------------------------------------------------------- 1 | 32.0 GT/s PCIe 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx9070xt/card1/device/current_link_width: -------------------------------------------------------------------------------- 1 | 16 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx9070xt/card1/device/gpu_busy_percent: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx9070xt/card1/device/hwmon/hwmon5/fan1_input: -------------------------------------------------------------------------------- 1 | 896 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx9070xt/card1/device/hwmon/hwmon5/fan1_max: -------------------------------------------------------------------------------- 1 | 3650 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx9070xt/card1/device/hwmon/hwmon5/fan1_min: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx9070xt/card1/device/hwmon/hwmon5/fan1_target: -------------------------------------------------------------------------------- 1 | 896 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx9070xt/card1/device/hwmon/hwmon5/freq1_input: -------------------------------------------------------------------------------- 1 | 167000000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx9070xt/card1/device/hwmon/hwmon5/freq1_label: -------------------------------------------------------------------------------- 1 | sclk 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx9070xt/card1/device/hwmon/hwmon5/freq2_input: -------------------------------------------------------------------------------- 1 | 1258000000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx9070xt/card1/device/hwmon/hwmon5/freq2_label: -------------------------------------------------------------------------------- 1 | mclk 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx9070xt/card1/device/hwmon/hwmon5/in0_input: -------------------------------------------------------------------------------- 1 | 552 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx9070xt/card1/device/hwmon/hwmon5/in0_label: -------------------------------------------------------------------------------- 1 | vddgfx 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx9070xt/card1/device/hwmon/hwmon5/name: -------------------------------------------------------------------------------- 1 | amdgpu 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx9070xt/card1/device/hwmon/hwmon5/power/control: -------------------------------------------------------------------------------- 1 | auto 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx9070xt/card1/device/hwmon/hwmon5/power/runtime_active_time: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx9070xt/card1/device/hwmon/hwmon5/power/runtime_status: -------------------------------------------------------------------------------- 1 | unsupported 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx9070xt/card1/device/hwmon/hwmon5/power/runtime_suspended_time: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx9070xt/card1/device/hwmon/hwmon5/power1_average: -------------------------------------------------------------------------------- 1 | 55000000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx9070xt/card1/device/hwmon/hwmon5/power1_cap: -------------------------------------------------------------------------------- 1 | 120000000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx9070xt/card1/device/hwmon/hwmon5/power1_cap_default: -------------------------------------------------------------------------------- 1 | 304000000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx9070xt/card1/device/hwmon/hwmon5/power1_cap_max: -------------------------------------------------------------------------------- 1 | 340000000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx9070xt/card1/device/hwmon/hwmon5/power1_cap_min: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx9070xt/card1/device/hwmon/hwmon5/power1_label: -------------------------------------------------------------------------------- 1 | PPT 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx9070xt/card1/device/hwmon/hwmon5/pwm1: -------------------------------------------------------------------------------- 1 | 81 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx9070xt/card1/device/hwmon/hwmon5/pwm1_max: -------------------------------------------------------------------------------- 1 | 255 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx9070xt/card1/device/hwmon/hwmon5/pwm1_min: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx9070xt/card1/device/hwmon/hwmon5/temp1_crit: -------------------------------------------------------------------------------- 1 | 110000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx9070xt/card1/device/hwmon/hwmon5/temp1_crit_hyst: -------------------------------------------------------------------------------- 1 | -273150 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx9070xt/card1/device/hwmon/hwmon5/temp1_emergency: -------------------------------------------------------------------------------- 1 | 115000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx9070xt/card1/device/hwmon/hwmon5/temp1_input: -------------------------------------------------------------------------------- 1 | 42000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx9070xt/card1/device/hwmon/hwmon5/temp1_label: -------------------------------------------------------------------------------- 1 | edge 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx9070xt/card1/device/hwmon/hwmon5/temp2_crit: -------------------------------------------------------------------------------- 1 | 110000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx9070xt/card1/device/hwmon/hwmon5/temp2_crit_hyst: -------------------------------------------------------------------------------- 1 | -273150 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx9070xt/card1/device/hwmon/hwmon5/temp2_emergency: -------------------------------------------------------------------------------- 1 | 115000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx9070xt/card1/device/hwmon/hwmon5/temp2_input: -------------------------------------------------------------------------------- 1 | 45000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx9070xt/card1/device/hwmon/hwmon5/temp2_label: -------------------------------------------------------------------------------- 1 | junction 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx9070xt/card1/device/hwmon/hwmon5/temp3_crit: -------------------------------------------------------------------------------- 1 | 108000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx9070xt/card1/device/hwmon/hwmon5/temp3_crit_hyst: -------------------------------------------------------------------------------- 1 | -273150 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx9070xt/card1/device/hwmon/hwmon5/temp3_emergency: -------------------------------------------------------------------------------- 1 | 113000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx9070xt/card1/device/hwmon/hwmon5/temp3_input: -------------------------------------------------------------------------------- 1 | 68000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx9070xt/card1/device/hwmon/hwmon5/temp3_label: -------------------------------------------------------------------------------- 1 | mem 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx9070xt/card1/device/power_dpm_force_performance_level: -------------------------------------------------------------------------------- 1 | auto 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx9070xt/card1/device/pp_cur_state: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx9070xt/card1/device/pp_dpm_sclk: -------------------------------------------------------------------------------- 1 | 0: 500Mhz 2 | 1: 16Mhz * 3 | 2: 2400Mhz 4 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx9070xt/card1/device/pp_force_state: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx9070xt/card1/device/pp_num_states: -------------------------------------------------------------------------------- 1 | states: 1 2 | 0 default 3 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx9070xt/card1/device/vbios_version: -------------------------------------------------------------------------------- 1 | 113-EXT109069-101 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/rx9070xt/card1/device/vendor: -------------------------------------------------------------------------------- 1 | 0x1002 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/vangogh/card0/device/current_link_speed: -------------------------------------------------------------------------------- 1 | 8.0 GT/s PCIe 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/vangogh/card0/device/current_link_width: -------------------------------------------------------------------------------- 1 | 16 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/vangogh/card0/device/gpu_busy_percent: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/vangogh/card0/device/hwmon/hwmon4/freq1_input: -------------------------------------------------------------------------------- 1 | 200000000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/vangogh/card0/device/hwmon/hwmon4/freq1_label: -------------------------------------------------------------------------------- 1 | sclk 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/vangogh/card0/device/hwmon/hwmon4/in0_input: -------------------------------------------------------------------------------- 1 | 15 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/vangogh/card0/device/hwmon/hwmon4/in0_label: -------------------------------------------------------------------------------- 1 | vddgfx 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/vangogh/card0/device/hwmon/hwmon4/in1_input: -------------------------------------------------------------------------------- 1 | 669 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/vangogh/card0/device/hwmon/hwmon4/in1_label: -------------------------------------------------------------------------------- 1 | vddnb 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/vangogh/card0/device/hwmon/hwmon4/name: -------------------------------------------------------------------------------- 1 | amdgpu 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/vangogh/card0/device/hwmon/hwmon4/power1_average: -------------------------------------------------------------------------------- 1 | 3218000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/vangogh/card0/device/hwmon/hwmon4/power1_cap: -------------------------------------------------------------------------------- 1 | 15000000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/vangogh/card0/device/hwmon/hwmon4/power1_cap_default: -------------------------------------------------------------------------------- 1 | 15000000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/vangogh/card0/device/hwmon/hwmon4/power1_cap_max: -------------------------------------------------------------------------------- 1 | 29000000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/vangogh/card0/device/hwmon/hwmon4/power1_cap_min: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/vangogh/card0/device/hwmon/hwmon4/power1_input: -------------------------------------------------------------------------------- 1 | 4057000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/vangogh/card0/device/hwmon/hwmon4/power1_label: -------------------------------------------------------------------------------- 1 | slowPPT 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/vangogh/card0/device/hwmon/hwmon4/power2_average: -------------------------------------------------------------------------------- 1 | 3040000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/vangogh/card0/device/hwmon/hwmon4/power2_cap: -------------------------------------------------------------------------------- 1 | 15000000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/vangogh/card0/device/hwmon/hwmon4/power2_cap_default: -------------------------------------------------------------------------------- 1 | 15000000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/vangogh/card0/device/hwmon/hwmon4/power2_cap_max: -------------------------------------------------------------------------------- 1 | 30000000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/vangogh/card0/device/hwmon/hwmon4/power2_cap_min: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/vangogh/card0/device/hwmon/hwmon4/power2_label: -------------------------------------------------------------------------------- 1 | fastPPT 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/vangogh/card0/device/hwmon/hwmon4/temp1_input: -------------------------------------------------------------------------------- 1 | 56000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/vangogh/card0/device/hwmon/hwmon4/temp1_label: -------------------------------------------------------------------------------- 1 | edge 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/vangogh/card0/device/pp_cur_state: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/vangogh/card0/device/pp_dpm_pcie: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/vangogh/card0/device/pp_force_state: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/vangogh/card0/device/pp_num_states: -------------------------------------------------------------------------------- 1 | states: 1 2 | 0 default 3 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/vangogh/card0/device/pp_od_clk_voltage: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/vangogh/card0/device/vbios_version: -------------------------------------------------------------------------------- 1 | 113-AMDAerithJ-005 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/vangogh/card0/device/vendor: -------------------------------------------------------------------------------- 1 | 0x1002 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/vega56/card0/device/ari_enabled: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/vega56/card0/device/boot_vga: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/vega56/card0/device/broken_parity_status: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/vega56/card0/device/class: -------------------------------------------------------------------------------- 1 | 0x030000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/vega56/card0/device/consistent_dma_mask_bits: -------------------------------------------------------------------------------- 1 | 44 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/vega56/card0/device/current_link_speed: -------------------------------------------------------------------------------- 1 | 8.0 GT/s PCIe 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/vega56/card0/device/current_link_width: -------------------------------------------------------------------------------- 1 | 16 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/vega56/card0/device/d3cold_allowed: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/vega56/card0/device/device: -------------------------------------------------------------------------------- 1 | 0x687f 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/vega56/card0/device/dma_mask_bits: -------------------------------------------------------------------------------- 1 | 44 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/vega56/card0/device/driver_override: -------------------------------------------------------------------------------- 1 | (null) 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/vega56/card0/device/enable: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/vega56/card0/device/gpu_busy_percent: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/vega56/card0/device/hwmon/hwmon4/fan1_enable: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/vega56/card0/device/hwmon/hwmon4/fan1_input: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/vega56/card0/device/hwmon/hwmon4/fan1_max: -------------------------------------------------------------------------------- 1 | 3500 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/vega56/card0/device/hwmon/hwmon4/fan1_min: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/vega56/card0/device/hwmon/hwmon4/fan1_target: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/vega56/card0/device/hwmon/hwmon4/freq1_input: -------------------------------------------------------------------------------- 1 | 26000000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/vega56/card0/device/hwmon/hwmon4/freq1_label: -------------------------------------------------------------------------------- 1 | sclk 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/vega56/card0/device/hwmon/hwmon4/freq2_input: -------------------------------------------------------------------------------- 1 | 167000000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/vega56/card0/device/hwmon/hwmon4/freq2_label: -------------------------------------------------------------------------------- 1 | mclk 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/vega56/card0/device/hwmon/hwmon4/in0_input: -------------------------------------------------------------------------------- 1 | 762 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/vega56/card0/device/hwmon/hwmon4/in0_label: -------------------------------------------------------------------------------- 1 | vddgfx 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/vega56/card0/device/hwmon/hwmon4/name: -------------------------------------------------------------------------------- 1 | amdgpu 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/vega56/card0/device/hwmon/hwmon4/power1_average: -------------------------------------------------------------------------------- 1 | 8000000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/vega56/card0/device/hwmon/hwmon4/power1_cap: -------------------------------------------------------------------------------- 1 | 260000000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/vega56/card0/device/hwmon/hwmon4/power1_cap_default: -------------------------------------------------------------------------------- 1 | 260000000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/vega56/card0/device/hwmon/hwmon4/power1_cap_max: -------------------------------------------------------------------------------- 1 | 390000000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/vega56/card0/device/hwmon/hwmon4/power1_cap_min: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/vega56/card0/device/hwmon/hwmon4/power1_label: -------------------------------------------------------------------------------- 1 | PPT 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/vega56/card0/device/hwmon/hwmon4/pwm1: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/vega56/card0/device/hwmon/hwmon4/pwm1_enable: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/vega56/card0/device/hwmon/hwmon4/pwm1_max: -------------------------------------------------------------------------------- 1 | 255 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/vega56/card0/device/hwmon/hwmon4/pwm1_min: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/vega56/card0/device/hwmon/hwmon4/temp1_crit: -------------------------------------------------------------------------------- 1 | 85000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/vega56/card0/device/hwmon/hwmon4/temp1_crit_hyst: -------------------------------------------------------------------------------- 1 | -273150 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/vega56/card0/device/hwmon/hwmon4/temp1_emergency: -------------------------------------------------------------------------------- 1 | 90000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/vega56/card0/device/hwmon/hwmon4/temp1_input: -------------------------------------------------------------------------------- 1 | 38000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/vega56/card0/device/hwmon/hwmon4/temp1_label: -------------------------------------------------------------------------------- 1 | edge 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/vega56/card0/device/hwmon/hwmon4/temp2_crit: -------------------------------------------------------------------------------- 1 | 105000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/vega56/card0/device/hwmon/hwmon4/temp2_crit_hyst: -------------------------------------------------------------------------------- 1 | -273150 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/vega56/card0/device/hwmon/hwmon4/temp2_emergency: -------------------------------------------------------------------------------- 1 | 110000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/vega56/card0/device/hwmon/hwmon4/temp2_input: -------------------------------------------------------------------------------- 1 | 38000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/vega56/card0/device/hwmon/hwmon4/temp2_label: -------------------------------------------------------------------------------- 1 | junction 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/vega56/card0/device/hwmon/hwmon4/temp3_crit: -------------------------------------------------------------------------------- 1 | 95000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/vega56/card0/device/hwmon/hwmon4/temp3_crit_hyst: -------------------------------------------------------------------------------- 1 | -273150 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/vega56/card0/device/hwmon/hwmon4/temp3_emergency: -------------------------------------------------------------------------------- 1 | 100000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/vega56/card0/device/hwmon/hwmon4/temp3_input: -------------------------------------------------------------------------------- 1 | 39000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/vega56/card0/device/hwmon/hwmon4/temp3_label: -------------------------------------------------------------------------------- 1 | mem 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/vega56/card0/device/irq: -------------------------------------------------------------------------------- 1 | 81 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/vega56/card0/device/link/l0s_aspm: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/vega56/card0/device/link/l1_aspm: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/vega56/card0/device/local_cpulist: -------------------------------------------------------------------------------- 1 | 0-15 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/vega56/card0/device/local_cpus: -------------------------------------------------------------------------------- 1 | 0000ffff 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/vega56/card0/device/max_link_speed: -------------------------------------------------------------------------------- 1 | 8.0 GT/s PCIe 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/vega56/card0/device/max_link_width: -------------------------------------------------------------------------------- 1 | 16 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/vega56/card0/device/mem_info_gtt_total: -------------------------------------------------------------------------------- 1 | 8342863872 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/vega56/card0/device/mem_info_gtt_used: -------------------------------------------------------------------------------- 1 | 12337152 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/vega56/card0/device/mem_info_preempt_used: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/vega56/card0/device/mem_info_vis_vram_total: -------------------------------------------------------------------------------- 1 | 268435456 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/vega56/card0/device/mem_info_vis_vram_used: -------------------------------------------------------------------------------- 1 | 16613376 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/vega56/card0/device/mem_info_vram_total: -------------------------------------------------------------------------------- 1 | 8573157376 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/vega56/card0/device/mem_info_vram_used: -------------------------------------------------------------------------------- 1 | 16613376 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/vega56/card0/device/mem_info_vram_vendor: -------------------------------------------------------------------------------- 1 | hynix 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/vega56/card0/device/msi_bus: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/vega56/card0/device/numa_node: -------------------------------------------------------------------------------- 1 | -1 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/vega56/card0/device/pcie_bw: -------------------------------------------------------------------------------- 1 | 85 0 256 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/vega56/card0/device/pcie_replay_count: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/vega56/card0/device/power/control: -------------------------------------------------------------------------------- 1 | on 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/vega56/card0/device/power/runtime_active_time: -------------------------------------------------------------------------------- 1 | 67446 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/vega56/card0/device/power/runtime_status: -------------------------------------------------------------------------------- 1 | active 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/vega56/card0/device/power/runtime_suspended_time: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/vega56/card0/device/power/wakeup: -------------------------------------------------------------------------------- 1 | disabled 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/vega56/card0/device/power/wakeup_abort_count: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/vega56/card0/device/power/wakeup_active: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/vega56/card0/device/power/wakeup_active_count: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/vega56/card0/device/power/wakeup_count: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/vega56/card0/device/power/wakeup_expire_count: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/vega56/card0/device/power/wakeup_last_time_ms: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/vega56/card0/device/power/wakeup_max_time_ms: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/vega56/card0/device/power/wakeup_total_time_ms: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/vega56/card0/device/power_dpm_force_performance_level: -------------------------------------------------------------------------------- 1 | auto 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/vega56/card0/device/power_dpm_state: -------------------------------------------------------------------------------- 1 | performance 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/vega56/card0/device/power_state: -------------------------------------------------------------------------------- 1 | D0 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/vega56/card0/device/pp_cur_state: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/vega56/card0/device/pp_dpm_pcie: -------------------------------------------------------------------------------- 1 | 0: 8.0GT/s, x16 * 2 | 1: 8.0GT/s, x16 * 3 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/vega56/card0/device/pp_force_state: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/vega56/card0/device/pp_mclk_od: -------------------------------------------------------------------------------- 1 | 15 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/vega56/card0/device/pp_num_states: -------------------------------------------------------------------------------- 1 | states: 2 2 | 0 boot 3 | 1 performance 4 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/vega56/card0/device/pp_sclk_od: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/vega56/card0/device/product_name: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/vega56/card0/device/product_number: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/vega56/card0/device/reset_method: -------------------------------------------------------------------------------- 1 | bus 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/vega56/card0/device/resource0_resize: -------------------------------------------------------------------------------- 1 | 0000000000003f00 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/vega56/card0/device/resource2_resize: -------------------------------------------------------------------------------- 1 | 00000000000001fe 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/vega56/card0/device/revision: -------------------------------------------------------------------------------- 1 | 0xc3 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/vega56/card0/device/serial_number: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/vega56/card0/device/subsystem_device: -------------------------------------------------------------------------------- 1 | 0x0555 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/vega56/card0/device/subsystem_vendor: -------------------------------------------------------------------------------- 1 | 0x1043 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/vega56/card0/device/vbios_version: -------------------------------------------------------------------------------- 1 | 115-D050PIL-100 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/amd/vega56/card0/device/vendor: -------------------------------------------------------------------------------- 1 | 0x1002 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/intel/a380-i915/card1/dev: -------------------------------------------------------------------------------- 1 | 226:1 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/intel/a380-i915/card1/device/current_link_speed: -------------------------------------------------------------------------------- 1 | 2.5 GT/s PCIe 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/intel/a380-i915/card1/device/current_link_width: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/intel/a380-i915/card1/device/hwmon/hwmon1/energy1_input: -------------------------------------------------------------------------------- 1 | 25637161804 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/intel/a380-i915/card1/device/hwmon/hwmon1/fan1_input: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/intel/a380-i915/card1/device/hwmon/hwmon1/in0_input: -------------------------------------------------------------------------------- 1 | 603 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/intel/a380-i915/card1/device/hwmon/hwmon1/name: -------------------------------------------------------------------------------- 1 | i915 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/intel/a380-i915/card1/device/hwmon/hwmon1/power/control: -------------------------------------------------------------------------------- 1 | auto 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/intel/a380-i915/card1/device/hwmon/hwmon1/power/runtime_active_time: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/intel/a380-i915/card1/device/hwmon/hwmon1/power/runtime_status: -------------------------------------------------------------------------------- 1 | unsupported 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/intel/a380-i915/card1/device/hwmon/hwmon1/power/runtime_suspended_time: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/intel/a380-i915/card1/device/hwmon/hwmon1/power1_max: -------------------------------------------------------------------------------- 1 | 55000000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/intel/a380-i915/card1/device/hwmon/hwmon1/power1_max_interval: -------------------------------------------------------------------------------- 1 | 28000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/intel/a380-i915/card1/device/hwmon/hwmon1/power1_rated_max: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/intel/a380-i915/card1/device/hwmon/hwmon1/temp1_input: -------------------------------------------------------------------------------- 1 | 55000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/intel/a380-i915/card1/device/vendor: -------------------------------------------------------------------------------- 1 | 0x8086 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/intel/a380-i915/card1/error: -------------------------------------------------------------------------------- 1 | No error state collected 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/intel/a380-i915/card1/gt/gt0/.defaults/rps_down_threshold_pct: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/intel/a380-i915/card1/gt/gt0/.defaults/rps_max_freq_mhz: -------------------------------------------------------------------------------- 1 | 2450 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/intel/a380-i915/card1/gt/gt0/.defaults/rps_min_freq_mhz: -------------------------------------------------------------------------------- 1 | 300 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/intel/a380-i915/card1/gt/gt0/.defaults/rps_up_threshold_pct: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/intel/a380-i915/card1/gt/gt0/id: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/intel/a380-i915/card1/gt/gt0/media_RP0_freq_mhz: -------------------------------------------------------------------------------- 1 | 1400 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/intel/a380-i915/card1/gt/gt0/media_RPn_freq_mhz: -------------------------------------------------------------------------------- 1 | 1400 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/intel/a380-i915/card1/gt/gt0/media_freq_factor: -------------------------------------------------------------------------------- 1 | 128 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/intel/a380-i915/card1/gt/gt0/media_freq_factor.scale: -------------------------------------------------------------------------------- 1 | 0.00390625 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/intel/a380-i915/card1/gt/gt0/punit_req_freq_mhz: -------------------------------------------------------------------------------- 1 | 600 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/intel/a380-i915/card1/gt/gt0/rc6_enable: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/intel/a380-i915/card1/gt/gt0/rc6_residency_ms: -------------------------------------------------------------------------------- 1 | 6534 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/intel/a380-i915/card1/gt/gt0/rps_RP0_freq_mhz: -------------------------------------------------------------------------------- 1 | 2450 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/intel/a380-i915/card1/gt/gt0/rps_RP1_freq_mhz: -------------------------------------------------------------------------------- 1 | 600 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/intel/a380-i915/card1/gt/gt0/rps_RPn_freq_mhz: -------------------------------------------------------------------------------- 1 | 300 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/intel/a380-i915/card1/gt/gt0/rps_act_freq_mhz: -------------------------------------------------------------------------------- 1 | 600 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/intel/a380-i915/card1/gt/gt0/rps_boost_freq_mhz: -------------------------------------------------------------------------------- 1 | 2450 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/intel/a380-i915/card1/gt/gt0/rps_cur_freq_mhz: -------------------------------------------------------------------------------- 1 | 600 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/intel/a380-i915/card1/gt/gt0/rps_max_freq_mhz: -------------------------------------------------------------------------------- 1 | 2450 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/intel/a380-i915/card1/gt/gt0/rps_min_freq_mhz: -------------------------------------------------------------------------------- 1 | 300 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/intel/a380-i915/card1/gt/gt0/slpc_ignore_eff_freq: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/intel/a380-i915/card1/gt/gt0/throttle_reason_pl1: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/intel/a380-i915/card1/gt/gt0/throttle_reason_pl2: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/intel/a380-i915/card1/gt/gt0/throttle_reason_pl4: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/intel/a380-i915/card1/gt/gt0/throttle_reason_prochot: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/intel/a380-i915/card1/gt/gt0/throttle_reason_ratl: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/intel/a380-i915/card1/gt/gt0/throttle_reason_status: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/intel/a380-i915/card1/gt/gt0/throttle_reason_thermal: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/intel/a380-i915/card1/gt/gt0/throttle_reason_vr_tdc: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/intel/a380-i915/card1/gt/gt0/throttle_reason_vr_thermalert: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/intel/a380-i915/card1/gt_RP0_freq_mhz: -------------------------------------------------------------------------------- 1 | 2450 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/intel/a380-i915/card1/gt_RP1_freq_mhz: -------------------------------------------------------------------------------- 1 | 600 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/intel/a380-i915/card1/gt_RPn_freq_mhz: -------------------------------------------------------------------------------- 1 | 300 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/intel/a380-i915/card1/gt_act_freq_mhz: -------------------------------------------------------------------------------- 1 | 600 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/intel/a380-i915/card1/gt_boost_freq_mhz: -------------------------------------------------------------------------------- 1 | 2450 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/intel/a380-i915/card1/gt_cur_freq_mhz: -------------------------------------------------------------------------------- 1 | 600 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/intel/a380-i915/card1/gt_max_freq_mhz: -------------------------------------------------------------------------------- 1 | 2450 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/intel/a380-i915/card1/gt_min_freq_mhz: -------------------------------------------------------------------------------- 1 | 300 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/intel/a380-i915/config.yaml: -------------------------------------------------------------------------------- 1 | power_cap: 60 2 | max_core_clock: 2100 3 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/intel/a380-xe/card0/dev: -------------------------------------------------------------------------------- 1 | 226:0 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/intel/a380-xe/card0/device/current_link_speed: -------------------------------------------------------------------------------- 1 | 2.5 GT/s PCIe 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/intel/a380-xe/card0/device/current_link_width: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/intel/a380-xe/card0/device/hwmon/hwmon1/energy2_input: -------------------------------------------------------------------------------- 1 | 2850177917 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/intel/a380-xe/card0/device/hwmon/hwmon1/energy2_label: -------------------------------------------------------------------------------- 1 | pkg 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/intel/a380-xe/card0/device/hwmon/hwmon1/in1_input: -------------------------------------------------------------------------------- 1 | 638 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/intel/a380-xe/card0/device/hwmon/hwmon1/in1_label: -------------------------------------------------------------------------------- 1 | pkg 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/intel/a380-xe/card0/device/hwmon/hwmon1/name: -------------------------------------------------------------------------------- 1 | xe 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/intel/a380-xe/card0/device/hwmon/hwmon1/power/control: -------------------------------------------------------------------------------- 1 | auto 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/intel/a380-xe/card0/device/hwmon/hwmon1/power/runtime_active_time: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/intel/a380-xe/card0/device/hwmon/hwmon1/power/runtime_status: -------------------------------------------------------------------------------- 1 | unsupported 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/intel/a380-xe/card0/device/hwmon/hwmon1/power/runtime_suspended_time: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/intel/a380-xe/card0/device/hwmon/hwmon1/power1_label: -------------------------------------------------------------------------------- 1 | card 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/intel/a380-xe/card0/device/hwmon/hwmon1/power2_label: -------------------------------------------------------------------------------- 1 | pkg 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/intel/a380-xe/card0/device/hwmon/hwmon1/power2_max: -------------------------------------------------------------------------------- 1 | 55000000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/intel/a380-xe/card0/device/hwmon/hwmon1/power2_max_interval: -------------------------------------------------------------------------------- 1 | 28000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/intel/a380-xe/card0/device/hwmon/hwmon1/power2_rated_max: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/intel/a380-xe/card0/device/tile0/gt0/engines/bcs/.defaults/job_timeout_min: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/intel/a380-xe/card0/device/tile0/gt0/engines/bcs/job_timeout_max: -------------------------------------------------------------------------------- 1 | 10000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/intel/a380-xe/card0/device/tile0/gt0/engines/bcs/job_timeout_min: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/intel/a380-xe/card0/device/tile0/gt0/engines/bcs/job_timeout_ms: -------------------------------------------------------------------------------- 1 | 5000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/intel/a380-xe/card0/device/tile0/gt0/engines/bcs/preempt_timeout_max: -------------------------------------------------------------------------------- 1 | 10000000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/intel/a380-xe/card0/device/tile0/gt0/engines/bcs/preempt_timeout_min: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/intel/a380-xe/card0/device/tile0/gt0/engines/bcs/preempt_timeout_us: -------------------------------------------------------------------------------- 1 | 640000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/intel/a380-xe/card0/device/tile0/gt0/engines/bcs/timeslice_duration_min: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/intel/a380-xe/card0/device/tile0/gt0/engines/bcs/timeslice_duration_us: -------------------------------------------------------------------------------- 1 | 1000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/intel/a380-xe/card0/device/tile0/gt0/engines/ccs/.defaults/job_timeout_min: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/intel/a380-xe/card0/device/tile0/gt0/engines/ccs/job_timeout_max: -------------------------------------------------------------------------------- 1 | 10000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/intel/a380-xe/card0/device/tile0/gt0/engines/ccs/job_timeout_min: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/intel/a380-xe/card0/device/tile0/gt0/engines/ccs/job_timeout_ms: -------------------------------------------------------------------------------- 1 | 5000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/intel/a380-xe/card0/device/tile0/gt0/engines/ccs/preempt_timeout_max: -------------------------------------------------------------------------------- 1 | 10000000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/intel/a380-xe/card0/device/tile0/gt0/engines/ccs/preempt_timeout_min: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/intel/a380-xe/card0/device/tile0/gt0/engines/ccs/preempt_timeout_us: -------------------------------------------------------------------------------- 1 | 640000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/intel/a380-xe/card0/device/tile0/gt0/engines/ccs/timeslice_duration_min: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/intel/a380-xe/card0/device/tile0/gt0/engines/ccs/timeslice_duration_us: -------------------------------------------------------------------------------- 1 | 1000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/intel/a380-xe/card0/device/tile0/gt0/engines/rcs/.defaults/job_timeout_min: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/intel/a380-xe/card0/device/tile0/gt0/engines/rcs/job_timeout_max: -------------------------------------------------------------------------------- 1 | 10000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/intel/a380-xe/card0/device/tile0/gt0/engines/rcs/job_timeout_min: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/intel/a380-xe/card0/device/tile0/gt0/engines/rcs/job_timeout_ms: -------------------------------------------------------------------------------- 1 | 5000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/intel/a380-xe/card0/device/tile0/gt0/engines/rcs/preempt_timeout_max: -------------------------------------------------------------------------------- 1 | 10000000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/intel/a380-xe/card0/device/tile0/gt0/engines/rcs/preempt_timeout_min: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/intel/a380-xe/card0/device/tile0/gt0/engines/rcs/preempt_timeout_us: -------------------------------------------------------------------------------- 1 | 640000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/intel/a380-xe/card0/device/tile0/gt0/engines/rcs/timeslice_duration_min: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/intel/a380-xe/card0/device/tile0/gt0/engines/rcs/timeslice_duration_us: -------------------------------------------------------------------------------- 1 | 1000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/intel/a380-xe/card0/device/tile0/gt0/engines/vcs/.defaults/job_timeout_min: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/intel/a380-xe/card0/device/tile0/gt0/engines/vcs/job_timeout_max: -------------------------------------------------------------------------------- 1 | 10000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/intel/a380-xe/card0/device/tile0/gt0/engines/vcs/job_timeout_min: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/intel/a380-xe/card0/device/tile0/gt0/engines/vcs/job_timeout_ms: -------------------------------------------------------------------------------- 1 | 5000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/intel/a380-xe/card0/device/tile0/gt0/engines/vcs/preempt_timeout_max: -------------------------------------------------------------------------------- 1 | 10000000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/intel/a380-xe/card0/device/tile0/gt0/engines/vcs/preempt_timeout_min: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/intel/a380-xe/card0/device/tile0/gt0/engines/vcs/preempt_timeout_us: -------------------------------------------------------------------------------- 1 | 640000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/intel/a380-xe/card0/device/tile0/gt0/engines/vcs/timeslice_duration_min: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/intel/a380-xe/card0/device/tile0/gt0/engines/vcs/timeslice_duration_us: -------------------------------------------------------------------------------- 1 | 1000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/intel/a380-xe/card0/device/tile0/gt0/engines/vecs/.defaults/job_timeout_min: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/intel/a380-xe/card0/device/tile0/gt0/engines/vecs/job_timeout_max: -------------------------------------------------------------------------------- 1 | 10000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/intel/a380-xe/card0/device/tile0/gt0/engines/vecs/job_timeout_min: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/intel/a380-xe/card0/device/tile0/gt0/engines/vecs/job_timeout_ms: -------------------------------------------------------------------------------- 1 | 5000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/intel/a380-xe/card0/device/tile0/gt0/engines/vecs/preempt_timeout_min: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/intel/a380-xe/card0/device/tile0/gt0/engines/vecs/preempt_timeout_us: -------------------------------------------------------------------------------- 1 | 640000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/intel/a380-xe/card0/device/tile0/gt0/engines/vecs/timeslice_duration_min: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/intel/a380-xe/card0/device/tile0/gt0/engines/vecs/timeslice_duration_us: -------------------------------------------------------------------------------- 1 | 1000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/intel/a380-xe/card0/device/tile0/gt0/freq0/act_freq: -------------------------------------------------------------------------------- 1 | 600 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/intel/a380-xe/card0/device/tile0/gt0/freq0/cur_freq: -------------------------------------------------------------------------------- 1 | 600 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/intel/a380-xe/card0/device/tile0/gt0/freq0/max_freq: -------------------------------------------------------------------------------- 1 | 2450 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/intel/a380-xe/card0/device/tile0/gt0/freq0/min_freq: -------------------------------------------------------------------------------- 1 | 600 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/intel/a380-xe/card0/device/tile0/gt0/freq0/rp0_freq: -------------------------------------------------------------------------------- 1 | 2450 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/intel/a380-xe/card0/device/tile0/gt0/freq0/rpe_freq: -------------------------------------------------------------------------------- 1 | 600 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/intel/a380-xe/card0/device/tile0/gt0/freq0/rpn_freq: -------------------------------------------------------------------------------- 1 | 300 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/intel/a380-xe/card0/device/tile0/gt0/freq0/throttle/reason_pl1: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/intel/a380-xe/card0/device/tile0/gt0/freq0/throttle/reason_pl2: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/intel/a380-xe/card0/device/tile0/gt0/freq0/throttle/reason_pl4: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/intel/a380-xe/card0/device/tile0/gt0/freq0/throttle/reason_prochot: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/intel/a380-xe/card0/device/tile0/gt0/freq0/throttle/reason_ratl: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/intel/a380-xe/card0/device/tile0/gt0/freq0/throttle/reason_thermal: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/intel/a380-xe/card0/device/tile0/gt0/freq0/throttle/reason_vr_tdc: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/intel/a380-xe/card0/device/tile0/gt0/freq0/throttle/reason_vr_thermalert: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/intel/a380-xe/card0/device/tile0/gt0/freq0/throttle/status: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/intel/a380-xe/card0/device/tile0/gt0/gtidle/idle_residency_ms: -------------------------------------------------------------------------------- 1 | 10013 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/intel/a380-xe/card0/device/tile0/gt0/gtidle/idle_status: -------------------------------------------------------------------------------- 1 | gt-c0 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/intel/a380-xe/card0/device/tile0/gt0/gtidle/name: -------------------------------------------------------------------------------- 1 | gt0-rc 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/intel/a380-xe/card0/device/vendor: -------------------------------------------------------------------------------- 1 | 0x8086 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/intel/cometlake/card0/dev: -------------------------------------------------------------------------------- 1 | 226:0 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/intel/cometlake/card0/device/current_link_speed: -------------------------------------------------------------------------------- 1 | Unknown 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/intel/cometlake/card0/device/current_link_width: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/intel/cometlake/card0/device/vendor: -------------------------------------------------------------------------------- 1 | 0x8086 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/intel/cometlake/card0/gt_RP0_freq_mhz: -------------------------------------------------------------------------------- 1 | 1150 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/intel/cometlake/card0/gt_RP1_freq_mhz: -------------------------------------------------------------------------------- 1 | 300 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/intel/cometlake/card0/gt_RPn_freq_mhz: -------------------------------------------------------------------------------- 1 | 300 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/intel/cometlake/card0/gt_act_freq_mhz: -------------------------------------------------------------------------------- 1 | 300 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/intel/cometlake/card0/gt_boost_freq_mhz: -------------------------------------------------------------------------------- 1 | 1150 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/intel/cometlake/card0/gt_cur_freq_mhz: -------------------------------------------------------------------------------- 1 | 300 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/intel/cometlake/card0/gt_max_freq_mhz: -------------------------------------------------------------------------------- 1 | 1150 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/intel/cometlake/card0/gt_min_freq_mhz: -------------------------------------------------------------------------------- 1 | 300 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/intel/tigerlake/card0/device/current_link_speed: -------------------------------------------------------------------------------- 1 | Unknown 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/intel/tigerlake/card0/device/current_link_width: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/intel/tigerlake/card0/device/tile0/gt0/engines/bcs/job_timeout_max: -------------------------------------------------------------------------------- 1 | 10000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/intel/tigerlake/card0/device/tile0/gt0/engines/bcs/job_timeout_min: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/intel/tigerlake/card0/device/tile0/gt0/engines/bcs/job_timeout_ms: -------------------------------------------------------------------------------- 1 | 5000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/intel/tigerlake/card0/device/tile0/gt0/engines/bcs/preempt_timeout_min: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/intel/tigerlake/card0/device/tile0/gt0/engines/bcs/preempt_timeout_us: -------------------------------------------------------------------------------- 1 | 640000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/intel/tigerlake/card0/device/tile0/gt0/engines/bcs/timeslice_duration_min: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/intel/tigerlake/card0/device/tile0/gt0/engines/bcs/timeslice_duration_us: -------------------------------------------------------------------------------- 1 | 1000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/intel/tigerlake/card0/device/tile0/gt0/engines/rcs/job_timeout_max: -------------------------------------------------------------------------------- 1 | 10000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/intel/tigerlake/card0/device/tile0/gt0/engines/rcs/job_timeout_min: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/intel/tigerlake/card0/device/tile0/gt0/engines/rcs/job_timeout_ms: -------------------------------------------------------------------------------- 1 | 5000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/intel/tigerlake/card0/device/tile0/gt0/engines/rcs/preempt_timeout_min: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/intel/tigerlake/card0/device/tile0/gt0/engines/rcs/preempt_timeout_us: -------------------------------------------------------------------------------- 1 | 640000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/intel/tigerlake/card0/device/tile0/gt0/engines/rcs/timeslice_duration_min: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/intel/tigerlake/card0/device/tile0/gt0/engines/rcs/timeslice_duration_us: -------------------------------------------------------------------------------- 1 | 1000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/intel/tigerlake/card0/device/tile0/gt0/engines/vcs/job_timeout_max: -------------------------------------------------------------------------------- 1 | 10000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/intel/tigerlake/card0/device/tile0/gt0/engines/vcs/job_timeout_min: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/intel/tigerlake/card0/device/tile0/gt0/engines/vcs/job_timeout_ms: -------------------------------------------------------------------------------- 1 | 5000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/intel/tigerlake/card0/device/tile0/gt0/engines/vcs/preempt_timeout_min: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/intel/tigerlake/card0/device/tile0/gt0/engines/vcs/preempt_timeout_us: -------------------------------------------------------------------------------- 1 | 640000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/intel/tigerlake/card0/device/tile0/gt0/engines/vcs/timeslice_duration_min: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/intel/tigerlake/card0/device/tile0/gt0/engines/vcs/timeslice_duration_us: -------------------------------------------------------------------------------- 1 | 1000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/intel/tigerlake/card0/device/tile0/gt0/engines/vecs/job_timeout_max: -------------------------------------------------------------------------------- 1 | 10000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/intel/tigerlake/card0/device/tile0/gt0/engines/vecs/job_timeout_min: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/intel/tigerlake/card0/device/tile0/gt0/engines/vecs/job_timeout_ms: -------------------------------------------------------------------------------- 1 | 5000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/intel/tigerlake/card0/device/tile0/gt0/engines/vecs/preempt_timeout_min: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/intel/tigerlake/card0/device/tile0/gt0/engines/vecs/preempt_timeout_us: -------------------------------------------------------------------------------- 1 | 640000 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/intel/tigerlake/card0/device/tile0/gt0/engines/vecs/timeslice_duration_min: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/intel/tigerlake/card0/device/tile0/gt0/freq0/act_freq: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/intel/tigerlake/card0/device/tile0/gt0/freq0/cur_freq: -------------------------------------------------------------------------------- 1 | 1100 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/intel/tigerlake/card0/device/tile0/gt0/freq0/max_freq: -------------------------------------------------------------------------------- 1 | 1300 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/intel/tigerlake/card0/device/tile0/gt0/freq0/min_freq: -------------------------------------------------------------------------------- 1 | 1100 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/intel/tigerlake/card0/device/tile0/gt0/freq0/rp0_freq: -------------------------------------------------------------------------------- 1 | 1300 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/intel/tigerlake/card0/device/tile0/gt0/freq0/rpe_freq: -------------------------------------------------------------------------------- 1 | 600 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/intel/tigerlake/card0/device/tile0/gt0/freq0/rpn_freq: -------------------------------------------------------------------------------- 1 | 100 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/intel/tigerlake/card0/device/tile0/gt0/freq0/throttle/reason_pl1: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/intel/tigerlake/card0/device/tile0/gt0/freq0/throttle/reason_pl2: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/intel/tigerlake/card0/device/tile0/gt0/freq0/throttle/reason_pl4: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/intel/tigerlake/card0/device/tile0/gt0/freq0/throttle/reason_prochot: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/intel/tigerlake/card0/device/tile0/gt0/freq0/throttle/reason_ratl: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/intel/tigerlake/card0/device/tile0/gt0/freq0/throttle/reason_thermal: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/intel/tigerlake/card0/device/tile0/gt0/freq0/throttle/reason_vr_tdc: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/intel/tigerlake/card0/device/tile0/gt0/freq0/throttle/reason_vr_thermalert: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/intel/tigerlake/card0/device/tile0/gt0/freq0/throttle/status: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/intel/tigerlake/card0/device/tile0/gt0/gtidle/idle_residency_ms: -------------------------------------------------------------------------------- 1 | 5708894 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/intel/tigerlake/card0/device/tile0/gt0/gtidle/idle_status: -------------------------------------------------------------------------------- 1 | gt-c6 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/intel/tigerlake/card0/device/tile0/gt0/gtidle/name: -------------------------------------------------------------------------------- 1 | gt0-rc 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/intel/tigerlake/card0/device/vendor: -------------------------------------------------------------------------------- 1 | 0x8086 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/nvidia/rtx4080/card1/device/current_link_speed: -------------------------------------------------------------------------------- 1 | 5.0 GT/s PCIe 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/nvidia/rtx4080/card1/device/current_link_width: -------------------------------------------------------------------------------- 1 | 16 2 | -------------------------------------------------------------------------------- /lact-daemon/src/tests/data/nvidia/rtx4080/card1/device/vendor: -------------------------------------------------------------------------------- 1 | 0x10de 2 | -------------------------------------------------------------------------------- /lact-gui/src/app/pages/software_page/vulkan.rs: -------------------------------------------------------------------------------- 1 | pub mod feature_window; 2 | -------------------------------------------------------------------------------- /pkg/images/arch/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM quay.io/lib/archlinux:latest 2 | -------------------------------------------------------------------------------- /pkg/images/debian-12/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM quay.io/lib/debian:12 2 | -------------------------------------------------------------------------------- /pkg/images/fedora-41/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM quay.io/fedora/fedora:41 2 | -------------------------------------------------------------------------------- /pkg/images/fedora-42/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM quay.io/fedora/fedora:42 2 | -------------------------------------------------------------------------------- /pkg/images/opensuse-tumbleweed/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM opensuse/tumbleweed 2 | RUN zypper dup -y 3 | -------------------------------------------------------------------------------- /pkg/images/ubuntu-2204/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM quay.io/lib/ubuntu:22.04 2 | -------------------------------------------------------------------------------- /pkg/images/ubuntu-2404/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM quay.io/lib/ubuntu:24.04 2 | -------------------------------------------------------------------------------- /rust-toolchain.toml: -------------------------------------------------------------------------------- 1 | [toolchain] 2 | channel = "1.85.1" 3 | --------------------------------------------------------------------------------