Advertisement
Guest User

Untitled

a guest
Aug 22nd, 2018
128
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.48 KB | None | 0 0
  1. === /hive/xmr-stak/config.txt =================================================
  2. "pool_list": [
  3. {
  4. "pool_address": "cryptonightv7.eu.nicehash.com:3363",
  5. "wallet_address": "x.y",
  6. "pool_password": "x",
  7. "use_nicehash": true,
  8. "use_tls": false,
  9. "tls_fingerprint": "",
  10. "pool_weight": 1,
  11. "rig_id": "x"
  12. }
  13. ],
  14. "currency": "monero7",
  15. "call_timeout": 10,
  16. "retry_time": 30,
  17. "giveup_limit": 0,
  18. "verbose_level": 3,
  19. "print_motd": true,
  20. "h_print_time": 60,
  21. "aes_override": null,
  22. "use_slow_memory": "warn",
  23. "tls_secure_algo": true,
  24. "daemon_mode": false,
  25. "flush_stdout": false,
  26. "output_file": "/var/log/miner/xmr-stak/xmr-stak.log",
  27. "httpd_port": 60045,
  28. "http_login": "",
  29. "http_pass": "",
  30. "prefer_ipv4": true
  31.  
  32. === /hive/xmr-stak/amd.txt =================================================
  33.  
  34. /*
  35. * GPU configuration. You should play around with intensity and worksize as the fastest settings will vary.
  36. * index - GPU index number usually starts from 0
  37. * intensity - Number of parallel GPU threads (nothing to do with CPU threads)
  38. * worksize - Number of local GPU threads (nothing to do with CPU threads)
  39. * affine_to_cpu - This will affine the thread to a CPU. This can make a GPU miner play along nicer with a CPU miner.
  40. * strided_index - switch memory pattern used for the scratch pad memory
  41. * 2 = chunked memory, chunk size is controlled by 'mem_chunk'
  42. * required: intensity must be a multiple of worksize
  43. * 1 or true = use 16byte contiguous memory per thread, the next memory block has offset of intensity blocks
  44. * 0 or false = use a contiguous block of memory per thread
  45. * mem_chunk - range 0 to 18: set the number of elements (16byte) per chunk
  46. * this value is only used if 'strided_index' == 2
  47. * element count is computed with the equation: 2 to the power of 'mem_chunk' e.g. 4 means a chunk of 16 elements(256byte)
  48. * comp_mode - Compatibility enable/disable the automatic guard around compute kernel which allows
  49. * to use a intensity which is not the multiple of the worksize.
  50. * If you set false and the intensity is not multiple of the worksize the miner can crash:
  51. * in this case set the intensity to a multiple of the worksize or activate comp_mode.
  52. * "gpu_threads_conf" :
  53. * [
  54. * { "index" : 0, "intensity" : 1000, "worksize" : 8, "affine_to_cpu" : false, "strided_index" : true, "mem_chunk" : 2, "comp_mode" : true },
  55. * ],
  56. * If you do not wish to mine with your AMD GPU(s) then use:
  57. * "gpu_threads_conf" :
  58. * null,
  59. */
  60.  
  61. "gpu_threads_conf" : [
  62. // gpu: gfx900 memory:3920
  63. // compute units: 56
  64. { "index" : 0,
  65. "intensity" : 1792, "worksize" : 8,
  66. "affine_to_cpu" : false, "strided_index" : 1, "mem_chunk" : 2,
  67. "comp_mode" : true
  68. },
  69. // gpu: gfx900 memory:3920
  70. // compute units: 56
  71. { "index" : 1,
  72. "intensity" : 1792, "worksize" : 8,
  73. "affine_to_cpu" : false, "strided_index" : 1, "mem_chunk" : 2,
  74. "comp_mode" : true
  75. },
  76. // gpu: gfx900 memory:3920
  77. // compute units: 56
  78. { "index" : 2,
  79. "intensity" : 1792, "worksize" : 8,
  80. "affine_to_cpu" : false, "strided_index" : 1, "mem_chunk" : 2,
  81. "comp_mode" : true
  82. },
  83.  
  84. ],
  85.  
  86. /*
  87. * Platform index. This will be 0 unless you have different OpenCL platform - eg. AMD and Intel.
  88. */
  89. "platform_index" : 0,
  90.  
  91.  
  92. === /hive/xmr-stak/nvidia.txt =================================================
  93. cat: /hive/xmr-stak/nvidia.txt: No such file or directory
  94.  
  95. === /hive/xmr-stak/cpu.txt =================================================
  96.  
  97. /*
  98. * Thread configuration for each thread. Make sure it matches the number above.
  99. * low_power_mode - This can either be a boolean (true or false), or a number between 1 to 5. When set to true,
  100. * this mode will double the cache usage, and double the single thread performance. It will
  101. * consume much less power (as less cores are working), but will max out at around 80-85% of
  102. * the maximum performance. When set to a number N greater than 1, this mode will increase the
  103. * cache usage and single thread performance by N times.
  104. *
  105. * no_prefetch - Some systems can gain up to extra 5% here, but sometimes it will have no difference or make
  106. * things slower.
  107. *
  108. * affine_to_cpu - This can be either false (no affinity), or the CPU core number. Note that on hyperthreading
  109. * systems it is better to assign threads to physical cores. On Windows this usually means selecting
  110. * even or odd numbered cpu numbers. For Linux it will be usually the lower CPU numbers, so for a 4
  111. * physical core CPU you should select cpu numbers 0-3.
  112. *
  113. * On the first run the miner will look at your system and suggest a basic configuration that will work,
  114. * you can try to tweak it from there to get the best performance.
  115. *
  116. * A filled out configuration should look like this:
  117. * "cpu_threads_conf" :
  118. * [
  119. * { "low_power_mode" : false, "no_prefetch" : true, "affine_to_cpu" : 0 },
  120. * { "low_power_mode" : false, "no_prefetch" : true, "affine_to_cpu" : 1 },
  121. * ],
  122. * If you do not wish to mine with your CPU(s) then use:
  123. * "cpu_threads_conf" :
  124. * null,
  125. */
  126.  
  127. "cpu_threads_conf" :
  128. [
  129. { "low_power_mode" : false, "no_prefetch" : true, "affine_to_cpu" : 0 },
  130.  
  131. ],
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement