diff options
author | psychocrypt <psychocrypt@users.noreply.github.com> | 2017-12-03 14:55:04 +0100 |
---|---|---|
committer | psychocrypt <psychocrypt@users.noreply.github.com> | 2017-12-03 14:55:04 +0100 |
commit | cfe64725f063b63eafbeeef7e57cad7448cb3d15 (patch) | |
tree | dc5cd5b9f4bd1cb98e51e163b85e78cfad4edc67 /xmrstak/backend/amd/config.tpl | |
parent | d10d20f1132a3c5d6dc51ed22a0381e460b579e8 (diff) | |
download | xmr-stak-cfe64725f063b63eafbeeef7e57cad7448cb3d15.zip xmr-stak-cfe64725f063b63eafbeeef7e57cad7448cb3d15.tar.gz |
set `srided_index = true` as default
Change the default for strided index. Th euser feedback shows that strided_index = true will give a view hashes more per second.
Diffstat (limited to 'xmrstak/backend/amd/config.tpl')
-rw-r--r-- | xmrstak/backend/amd/config.tpl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/xmrstak/backend/amd/config.tpl b/xmrstak/backend/amd/config.tpl index f31a678..af662f8 100644 --- a/xmrstak/backend/amd/config.tpl +++ b/xmrstak/backend/amd/config.tpl @@ -6,11 +6,11 @@ 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 - * false = use a contiguous block of memory per thread * 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 * "gpu_threads_conf" : * [ - * { "index" : 0, "intensity" : 1000, "worksize" : 8, "affine_to_cpu" : false, "strided_index" : false }, + * { "index" : 0, "intensity" : 1000, "worksize" : 8, "affine_to_cpu" : false, "strided_index" : true }, * ], */ |