Skip to content

Commit

Permalink
Merge pull request #2520 from psychocrypt/topic-optmimizeFijiCnGPU
Browse files Browse the repository at this point in the history
AMD: optimize fiji auto config cn-gpu
  • Loading branch information
fireice-uk authored Aug 30, 2019
2 parents cd540b5 + 28be412 commit bfd0ccd
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion xmrstak/backend/amd/autoAdjust.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,10 @@ class autoAdjust
// UNKNOWN
ctx.name.compare("gfx900") == 0 ||
ctx.name.compare("gfx903") == 0 ||
ctx.name.compare("gfx905") == 0)
ctx.name.compare("gfx905") == 0 ||
// Radeon VII
ctx.name.compare("gfx906") == 0 ||
ctx.name.compare("Fiji") == 0)
{
/* Increase the number of threads for AMD VEGA gpus.
* Limit the number of threads based on the issue: https://github.com/fireice-uk/xmr-stak/issues/5#issuecomment-339425089
Expand Down

0 comments on commit bfd0ccd

Please sign in to comment.