diff options
author | fireice-uk <fireice-uk@users.noreply.github.com> | 2018-02-19 14:10:36 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-02-19 14:10:36 +0000 |
commit | f785481bb7c1fb887a65a0b19c3e453904bb5474 (patch) | |
tree | f0ac2fc281c47ce4965189f75e29e7b71002bc85 /xmrstak/backend/amd/autoAdjust.hpp | |
parent | 84febdf63edc3cf702ae6747c8b071d5302249de (diff) | |
parent | 737185ee82bae05953680b1f4c4cdf8646c51b5a (diff) | |
download | xmr-stak-f785481bb7c1fb887a65a0b19c3e453904bb5474.zip xmr-stak-f785481bb7c1fb887a65a0b19c3e453904bb5474.tar.gz |
Merge pull request #1087 from psychocrypt/topic-blockedStride3
AMD: option `mem_chunk`and new `strided_index`
Diffstat (limited to 'xmrstak/backend/amd/autoAdjust.hpp')
-rw-r--r-- | xmrstak/backend/amd/autoAdjust.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xmrstak/backend/amd/autoAdjust.hpp b/xmrstak/backend/amd/autoAdjust.hpp index afedb5c..b88d3ee 100644 --- a/xmrstak/backend/amd/autoAdjust.hpp +++ b/xmrstak/backend/amd/autoAdjust.hpp @@ -143,7 +143,7 @@ private: // set 8 threads per block (this is a good value for the most gpus) conf += std::string(" { \"index\" : ") + std::to_string(ctx.deviceIdx) + ",\n" + " \"intensity\" : " + std::to_string(intensity) + ", \"worksize\" : " + std::to_string(8) + ",\n" + - " \"affine_to_cpu\" : false, \"strided_index\" : true\n" + " \"affine_to_cpu\" : false, \"strided_index\" : 1, \"mem_chunk\" : 4\n" " },\n"; } else |