Advertisement
Guest User

XMR-STAK CONFIG

a guest
Dec 7th, 2017
132
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 1.31 KB | None | 0 0
  1. /*
  2.  * GPU configuration. You should play around with intensity and worksize as the fastest settings will vary.
  3.  *      index    - GPU index number usually starts from 0
  4.  *  intensity    - Number of parallel GPU threads (nothing to do with CPU threads)
  5.  *   worksize    - Number of local GPU threads (nothing to do with CPU threads)
  6.  * affine_to_cpu - This will affine the thread to a CPU. This can make a GPU miner play along nicer with a CPU miner.
  7.  * "gpu_threads_conf" :
  8.  * [
  9.  *  { "index" : 0, "intensity" : 1000, "worksize" : 8, "affine_to_cpu" : false },
  10.  * ],
  11.  */
  12.  
  13. "gpu_threads_conf" : [
  14.   // gpu: Baffin memory:1664
  15.   // compute units: 16
  16.   { "index" : 0,
  17.     "intensity" : 768, "worksize" : 8,
  18.     "affine_to_cpu" : false,
  19.   },
  20.   // gpu: Baffin memory:1664
  21.   // compute units: 16
  22.   { "index" : 1,
  23.     "intensity" : 768, "worksize" : 8,
  24.     "affine_to_cpu" : false,
  25.   },
  26.   // gpu: Baffin memory:1664
  27.   // compute units: 16
  28.   { "index" : 2,
  29.     "intensity" : 768, "worksize" : 8,
  30.     "affine_to_cpu" : false,
  31.   },
  32.   // gpu: Baffin memory:1664
  33.   // compute units: 16
  34.   { "index" : 3,
  35.     "intensity" : 768, "worksize" : 8,
  36.     "affine_to_cpu" : false,
  37.   },
  38.  
  39. ],
  40.  
  41. /*
  42.  * Platform index. This will be 0 unless you have different OpenCL platform - eg. AMD and Intel.
  43.  */
  44. "platform_index" : 1,
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement