AMD GPU: Difference between revisions
imported>Artturin clarify amdvlk |
imported>Thornycrackers No edit summary |
||
| Line 18: | Line 18: | ||
</syntaxhighlight> | </syntaxhighlight> | ||
== Enable Southern Islands (SI) and Sea Islands (CIK) support == | |||
The linux package enables AMDGPU support [https://en.wikipedia.org/wiki/Radeon_HD_7000_series Southern Island (si)] and [https://en.wikipedia.org/wiki/Radeon_HD_8000_series Sea Island(cik)]. You can set kernel params to enable support | |||
<syntaxhighlight lang="nix"> | |||
# for Southern Islands (SI) cards | |||
boot.kernelParams = [ "radeon.si_support=0" "amdgpu.si_support=1" ]; | |||
# for Sea Islands (CIK) cards | |||
boot.kernelParams = [ "radeon.cik_support=0" "amdgpu.cik_support=1" ]; | |||
</syntaxhighlight> | |||
== OpenCL == | == OpenCL == | ||