Guest User

Untitled

a guest
Apr 12th, 2018
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.94 KB | None | 0 0
  1. # ZM supports configuration via configuration files.
  2. # Configuration files are used if the '--cfg-file' option is given on the
  3. # command line. All additional command line options are ignored in this case.
  4. # Options are grouped into sections - each option is a 'key=value(s)' pair.
  5. # Lists of values are separated by ',' (spaces are not allowed).
  6. # Comments start with '#'.
  7.  
  8. # ZM supports the setup of multiple pools.
  9. # Pools are ordered by their priority. Higher priority pools are configured
  10. # above lower priority pools in this file. ZM connects to the highest priority
  11. # pool which is reachable. If a pool gets unreachable a lower priority pool will
  12. # be used. ZM reconnects to a higher priority pool automatically if it gets
  13. # reachable again.
  14.  
  15.  
  16.  
  17. [GLOBAL]
  18. dev=0,1,2,3 # Comma separated list of cuda devices
  19. time=1 # Enable output of timestamps
  20. color=1 # Colorize the output
  21. #logfile=zm.log # Appends logs to the given file
  22. #noreconnect=1 # Disable reconnection on network errors
  23.  
  24.  
  25. telemetry=0.0.0.0:2222 # Starts telemetry server
  26.  
  27.  
  28. #intensity=0:0.9,1:0.85 # Reduce the load which is put on the gpu valid
  29. # range ]1.0-0.0[. Format: comma separated list
  30. # of dev_id:intensity values e.g '0:0.5,2:0.6'
  31. # Intensity uses performance data - it takes
  32. # some time till it gets applied.
  33.  
  34. #temp-target=0:65,2:65 # In C - If set, enables temperature controller.
  35. # The workload of each GPU will be continuously
  36. # adjusted such that the temperature stays around
  37. # this value. Format: comma separated list of
  38. # of dev_id:temp-target values e.g '0:65,2:70'
  39.  
  40.  
  41.  
  42.  
  43.  
  44. [POOL]
  45. server=ssl://eu-de01.miningrigrentals.com
  46. port=51246
  47. user=alexktz.68097
  48. pass=x
Add Comment
Please, Sign In to add comment