Uploaded sanitized BC250/ROCm Repository.

This commit is contained in:
Fabian
2026-08-20 00:45:43 +02:00
parent 7d2184f1e8
commit d7d22e93b3
678 changed files with 65963 additions and 1 deletions
+9
View File
@@ -0,0 +1,9 @@
#!/bin/bash
SYSFS="/sys/class/drm/card0/device"
for level in auto low high profile_standard profile_min_sclk profile_min_mclk profile_peak manual; do
result=$(echo "$level" | sudo tee "$SYSFS/power_dpm_force_performance_level" 2>&1)
current=$(cat "$SYSFS/power_dpm_force_performance_level")
echo "$level -> current=$current"
done
echo "---"
echo "Final: $(cat $SYSFS/power_dpm_force_performance_level)"