2024-03-25 00:18:58 +00:00
|
|
|
{{ ansible_managed | comment }}
|
|
|
|
|
2021-10-13 02:03:21 +00:00
|
|
|
[main]
|
|
|
|
include={{ item.1 }}
|
2023-04-08 17:28:51 +00:00
|
|
|
summary={{ item.1 }} + TCP/RAID tweaks + AMDGPU {{ item.0 }}
|
2021-10-13 02:03:21 +00:00
|
|
|
|
2024-03-24 23:55:50 +00:00
|
|
|
{% if sysctl is defined %}
|
2022-01-30 05:07:22 +00:00
|
|
|
[sysctl]
|
2024-03-24 23:55:50 +00:00
|
|
|
{% for _sysctl, value in sysctl.items() %}
|
|
|
|
{{ _sysctl }}={{ value }}
|
|
|
|
{% endfor %}
|
2022-06-04 16:38:40 +00:00
|
|
|
|
2024-03-24 23:55:50 +00:00
|
|
|
{% endif %}
|
2022-06-13 02:20:10 +00:00
|
|
|
# reference/execute AMDGPU control script
|
|
|
|
# used because some sysfs interfaces are transactional
|
|
|
|
# cannot be set by a single param in 'tuned'/[sysfs]
|
2022-06-04 16:38:40 +00:00
|
|
|
[gpuclockscript]
|
|
|
|
type=script
|
|
|
|
script=${i:PROFILE_DIR}/amdgpu-clock.sh
|