Advertisement
Guest User

Untitled

a guest
Jun 13th, 2018
155
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.79 KB | None | 0 0
  1. === /hive/xmr-stak/config.txt =================================================
  2. "pool_list": [
  3. {
  4. "pool_address": "pool.bbscoin.xyz:5555",
  5. "wallet_address": "fySFG8ZTAFwQmjaxFzuBFU3BsgVtA77kcCXY5aqCCxCMCFTsdNf6XgR8ZECMKNDETq1UM2pmUoFMtguQaQYBqGeP1P9Gx2u38",
  6. "pool_password": "x",
  7. "use_nicehash": false,
  8. "use_tls": false,
  9. "tls_fingerprint": "",
  10. "pool_weight": 1,
  11. "rig_id": "Mina_1"
  12. }
  13. ],
  14. "currency": "cryptonight_v7",
  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: Ellesmere memory:3920
  63. // compute units: 36
  64. { "index" : 0,
  65. "intensity" : 864, "worksize" : 8,
  66. "affine_to_cpu" : false, "strided_index" : 1, "mem_chunk" : 2,
  67. "comp_mode" : true
  68. },
  69. // gpu: Ellesmere memory:3920
  70. // compute units: 36
  71. { "index" : 1,
  72. "intensity" : 864, "worksize" : 8,
  73. "affine_to_cpu" : false, "strided_index" : 1, "mem_chunk" : 2,
  74. "comp_mode" : true
  75. },
  76. // gpu: Ellesmere memory:3920
  77. // compute units: 36
  78. { "index" : 2,
  79. "intensity" : 864, "worksize" : 8,
  80. "affine_to_cpu" : false, "strided_index" : 1, "mem_chunk" : 2,
  81. "comp_mode" : true
  82. },
  83. // gpu: Ellesmere memory:3920
  84. // compute units: 36
  85. { "index" : 3,
  86. "intensity" : 864, "worksize" : 8,
  87. "affine_to_cpu" : false, "strided_index" : 1, "mem_chunk" : 2,
  88. "comp_mode" : true
  89. },
  90.  
  91. ],
  92.  
  93. /*
  94. * Platform index. This will be 0 unless you have different OpenCL platform - eg. AMD and Intel.
  95. */
  96. "platform_index" : 0,
  97.  
  98.  
  99. === /hive/xmr-stak/nvidia.txt =================================================
  100. cat: /hive/xmr-stak/nvidia.txt: No such file or directory
  101.  
  102. === /hive/xmr-stak/cpu.txt =================================================
  103.  
  104. /*
  105. * Thread configuration for each thread. Make sure it matches the number above.
  106. * low_power_mode - This can either be a boolean (true or false), or a number between 1 to 5. When set to true,
  107. * this mode will double the cache usage, and double the single thread performance. It will
  108. * consume much less power (as less cores are working), but will max out at around 80-85% of
  109. * the maximum performance. When set to a number N greater than 1, this mode will increase the
  110. * cache usage and single thread performance by N times.
  111. *
  112. * no_prefetch - Some sytems can gain up to extra 5% here, but sometimes it will have no difference or make
  113. * things slower.
  114. *
  115. * affine_to_cpu - This can be either false (no affinity), or the CPU core number. Note that on hyperthreading
  116. * systems it is better to assign threads to physical cores. On Windows this usually means selecting
  117. * even or odd numbered cpu numbers. For Linux it will be usually the lower CPU numbers, so for a 4
  118. * physical core CPU you should select cpu numbers 0-3.
  119. *
  120. * On the first run the miner will look at your system and suggest a basic configuration that will work,
  121. * you can try to tweak it from there to get the best performance.
  122. *
  123. * A filled out configuration should look like this:
  124. * "cpu_threads_conf" :
  125. * [
  126. * { "low_power_mode" : false, "no_prefetch" : true, "affine_to_cpu" : 0 },
  127. * { "low_power_mode" : false, "no_prefetch" : true, "affine_to_cpu" : 1 },
  128. * ],
  129. * If you do not wish to mine with your CPU(s) then use:
  130. * "cpu_threads_conf" :
  131. * null,
  132. */
  133.  
  134. "cpu_threads_conf" :
  135. [
  136. { "low_power_mode" : false, "no_prefetch" : true, "affine_to_cpu" : 0 },
  137.  
  138. ],
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement