Skip to content

Commit

Permalink
AMD: optimize fiji and radeon VII auto config cn-gpu
Browse files Browse the repository at this point in the history
solve #2510 and #2505

set worksize to 16 instead of 8
  • Loading branch information
psychocrypt committed Aug 24, 2019
1 parent bb189ad commit 28be412
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 28be412

Please sign in to comment.