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/config.tpl | |
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/config.tpl')
-rw-r--r-- | xmrstak/backend/amd/config.tpl | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/xmrstak/backend/amd/config.tpl b/xmrstak/backend/amd/config.tpl index 25b75a1..8914130 100644 --- a/xmrstak/backend/amd/config.tpl +++ b/xmrstak/backend/amd/config.tpl @@ -6,11 +6,16 @@ R"===( * worksize - Number of local GPU threads (nothing to do with CPU threads) * affine_to_cpu - This will affine the thread to a CPU. This can make a GPU miner play along nicer with a CPU miner. * strided_index - switch memory pattern used for the scratch pad memory - * true = use 16byte contiguous memory per thread, the next memory block has offset of intensity blocks - * false = use a contiguous block of memory per thread + * 2 = chunked memory, chunk size is controlled by 'mem_chunk' + * required: intensity must be a multiple of worksize + * 1 or true = use 16byte contiguous memory per thread, the next memory block has offset of intensity blocks + * 0 or false = use a contiguous block of memory per thread + * mem_chunk - range 0 to 18: set the number of elements (16byte) per chunk + * this value is only used if 'strided_index' == 2 + * element count is computed with the equation: 2 to the power of 'mem_chunk' e.g. 4 means a chunk of 16 elements(256byte) * "gpu_threads_conf" : * [ - * { "index" : 0, "intensity" : 1000, "worksize" : 8, "affine_to_cpu" : false, "strided_index" : true }, + * { "index" : 0, "intensity" : 1000, "worksize" : 8, "affine_to_cpu" : false, "strided_index" : true, "mem_chunk" : 4 }, * ], * If you do not wish to mine with your AMD GPU(s) then use: * "gpu_threads_conf" : |