2021-10-13 01:14:30 +00:00
# tuned-amdgpu
2021-10-18 22:31:35 +00:00
hacky solution to integrate AMDGPU power profile control in `tuned` with Ansible
## Notable variables
2022-06-08 00:33:23 +00:00
- `power_max_custom_multi` : Accepts a float from 0.0 to 1.0. Allows max GPU power consumption to be controlled in the generated `custom` GPU profile. Provided: `1.0` for 100% board power capability.
- `power_max_custom_multi` : Accepts a float from 0.0 to 1.0. Allows max GPU power consumption to be controlled in the generated `default` GPU profile. Provided: `0.75` for 75% board power capability.
- `card` : Sets the `card#` to use in the qualified `sysfs` path `/sys/class/drm/{{ card }}/device/pp_power_profile_mode` . Default: `card0`
- `base_profiles` : List of base tuned profiles to clone in the new AMDGPU profiles. Defaults (based on `Fedora` ):
- `balanced`
2021-10-18 22:35:11 +00:00
- `desktop`
2022-06-08 00:33:23 +00:00
- `latency-performance`
2021-10-18 22:35:11 +00:00
- `network-latency`
2022-06-08 00:33:23 +00:00
- `network-throughput`
2021-10-18 22:35:11 +00:00
- `powersave`
2022-06-08 00:33:23 +00:00
- `virtual-host`
2021-10-18 22:35:11 +00:00
- `amdgpu_profiles` : Mapping of AMDGPU power profiles (`name`/`value`) defined in the `sysfs` path above. Varies, sample is with a 6900XT. Defaults:
2022-06-08 00:33:23 +00:00
- `{ name: 'default', value: 0 }`
2021-10-18 22:35:11 +00:00
- `{ name: 'custom', value: 6 }`
2021-10-13 02:07:36 +00:00
## Example profiles/output
```
2022-06-08 00:33:23 +00:00
$ tuned-adm profile
2021-10-13 02:07:36 +00:00
Available profiles:
- accelerator-performance - Throughput performance based tuning with disabled higher latency STOP states
- balanced - General non-specialized tuned profile
2022-06-08 00:33:23 +00:00
- balanced-amdgpu-custom - balanced + TCP/RAID tweaks + AMDGPU pp_power_profile_mode = 6 (custom)
- balanced-amdgpu-default - balanced + TCP/RAID tweaks + AMDGPU pp_power_profile_mode = 0 (default)
2021-10-13 02:07:36 +00:00
- desktop - Optimize for the desktop use-case
2022-06-08 00:33:23 +00:00
- desktop-amdgpu-custom - desktop + TCP/RAID tweaks + AMDGPU pp_power_profile_mode = 6 (custom)
- desktop-amdgpu-default - desktop + TCP/RAID tweaks + AMDGPU pp_power_profile_mode = 0 (default)
2021-10-13 02:07:36 +00:00
- hpc-compute - Optimize for HPC compute workloads
- intel-sst - Configure for Intel Speed Select Base Frequency
- latency-performance - Optimize for deterministic performance at the cost of increased power consumption
2022-06-08 00:33:23 +00:00
- latency-performance-amdgpu-custom- latency-performance + TCP/RAID tweaks + AMDGPU pp_power_profile_mode = 6 (custom)
- latency-performance-amdgpu-default- latency-performance + TCP/RAID tweaks + AMDGPU pp_power_profile_mode = 0 (default)
2021-10-13 02:07:36 +00:00
- network-latency - Optimize for deterministic performance at the cost of increased power consumption, focused on low latency network performance
2022-06-08 00:33:23 +00:00
- network-latency-amdgpu-custom- network-latency + TCP/RAID tweaks + AMDGPU pp_power_profile_mode = 6 (custom)
- network-latency-amdgpu-default- network-latency + TCP/RAID tweaks + AMDGPU pp_power_profile_mode = 0 (default)
2021-10-13 02:07:36 +00:00
- network-throughput - Optimize for streaming network throughput, generally only necessary on older CPUs or 40G+ networks
2022-06-08 00:33:23 +00:00
- network-throughput-amdgpu-custom- network-throughput + TCP/RAID tweaks + AMDGPU pp_power_profile_mode = 6 (custom)
- network-throughput-amdgpu-default- network-throughput + TCP/RAID tweaks + AMDGPU pp_power_profile_mode = 0 (default)
2021-10-13 02:07:36 +00:00
- optimize-serial-console - Optimize for serial console use.
- powersave - Optimize for low power consumption
2022-06-08 00:33:23 +00:00
- powersave-amdgpu-custom - powersave + TCP/RAID tweaks + AMDGPU pp_power_profile_mode = 6 (custom)
- powersave-amdgpu-default - powersave + TCP/RAID tweaks + AMDGPU pp_power_profile_mode = 0 (default)
2021-10-13 02:07:36 +00:00
- throughput-performance - Broadly applicable tuning that provides excellent performance across a variety of common server workloads
- virtual-guest - Optimize for running inside a virtual guest
- virtual-host - Optimize for running KVM guests
2022-06-08 00:33:23 +00:00
- virtual-host-amdgpu-custom - virtual-host + TCP/RAID tweaks + AMDGPU pp_power_profile_mode = 6 (custom)
- virtual-host-amdgpu-default - virtual-host + TCP/RAID tweaks + AMDGPU pp_power_profile_mode = 0 (default)
Current active profile: network-latency-amdgpu-default
2021-10-18 22:31:35 +00:00
```