Created
April 4, 2018 19:08
-
-
Save ironicbadger/8cb532d0a1e439d936a9b799e85c5b15 to your computer and use it in GitHub Desktop.
zm configuration
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # ZM supports configuration via configuration files. | |
| # Configuration files are used if the '--cfg-file' option is given on the | |
| # command line. All additional command line options are ignored in this case. | |
| # Options are grouped into sections - each option is a 'key=value(s)' pair. | |
| # Lists of values are separated by ',' (spaces are not allowed). | |
| # Comments start with '#'. | |
| # ZM supports the setup of multiple pools. | |
| # Pools are ordered by their priority. Higher priority pools are configured | |
| # above lower priority pools in this file. ZM connects to the highest priority | |
| # pool which is reachable. If a pool gets unreachable a lower priority pool will | |
| # be used. ZM reconnects to a higher priority pool automatically if it gets | |
| # reachable again. | |
| [GLOBAL] | |
| dev=0,1,2,3 # Comma separated list of cuda devices | |
| time=1 # Enable output of timestamps | |
| color=1 # Colorize the output | |
| #logfile=zm.log # Appends logs to the given file | |
| #noreconnect=1 # Disable reconnection on network errors | |
| telemetry=0.0.0.0:2222 # Starts telemetry server | |
| #intensity=0:0.9,1:0.85 # Reduce the load which is put on the gpu valid | |
| # range ]1.0-0.0[. Format: comma separated list | |
| # of dev_id:intensity values e.g '0:0.5,2:0.6' | |
| # Intensity uses performance data - it takes | |
| # some time till it gets applied. | |
| #temp-target=0:65,2:65 # In C - If set, enables temperature controller. | |
| # The workload of each GPU will be continuously | |
| # adjusted such that the temperature stays around | |
| # this value. Format: comma separated list of | |
| # of dev_id:temp-target values e.g '0:65,2:70' | |
| [POOL] | |
| server=ssl://eu-de01.miningrigrentals.com | |
| port=51246 | |
| user=alexktz.68097 | |
| pass=x |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment