Skip to content

Instantly share code, notes, and snippets.

@mkell43
Created December 26, 2017 15:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mkell43/b1c97357a52d3f203eae268772de9b9e to your computer and use it in GitHub Desktop.
Save mkell43/b1c97357a52d3f203eae268772de9b9e to your computer and use it in GitHub Desktop.
Set overclock for AMD cards on Linux
#!/bin/bash
for c in $(ls -l /sys/class/drm/card*/device/pp_sclk_od | awk '{print $9}'); do
echo "7" > $c;
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment