This repository has been archived by the owner on Oct 8, 2021. It is now read-only.
forked from tsiv/ccminer-cryptonight
-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathREADME.txt
executable file
·113 lines (94 loc) · 5.46 KB
/
README.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
ccminer-cryptonight, a ccminer mod by tsiv and KlausT
-------------------------------------------------------------
***************************************************************
If you find this tool useful and like to support its continued
development, then consider a donation.
KlausT's BTC donation addresses: 1QDwdLPrPYSoPqS7pB2kGG84YX6hEcQ4JN
bc1qpt7qnvjaqu8t24xqajgyfqan2v00hrdgrut0zq
KlausT's BCH donation addresses: 1AH1u7B4KtDTUBgmT6NrXyahNEgTac3fL7
qpjupzv3nevqzlkyxx5d736xt78jvet7usm479kl73
tsiv's BTC donation address: 1JHDKp59t1RhHFXsTw2UQpR3F9BBz3R3cs
tsiv's XMR donation address: 42uasNqYPnSaG3TwRtTeVbQ4aRY3n9jY6VXX3mfgerWt4ohDQLVaBPv3cYGKDXasTUVuLvhxetcuS16ynt85czQ48mbSrWX
Don't forget to support the original ccminer authors
Christian Buchner and Christian H. This mod would not be
here without their work on ccminer:
BTC donation address: 16hJF5mceSojnTD3ZTUDqdRhDyPJzoRakM
***************************************************************
>>> Introduction <<<
This is a CUDA accelerated mining application for use with
Monero and other coins based on the Cryptonight algorithm.
THIS PROGRAM IS PROVIDED "AS-IS", USE IT AT YOUR OWN RISK!
>>> Command Line Interface <<<
This code is based on the main ccminer branch, that in turn
is based on the pooler cpuminer 2.3.2 release and inherits
most of their command line interface and options.
-a --algo choose between the supported algos:
cryptonight (the old version)
monero (v7)
graft (v8)
stellite (v3)
intense (v4)
electroneum (v6)
-d, --devices gives a comma separated list of CUDA device IDs
to operate on. Device IDs start counting from 0!
Alternatively give string names of your card like
gtx780ti or gt640#2 (matching 2nd gt640 in the PC).
-l, --launch=CONFIG launch config for the Cryptonight kernel.
a comma separated list of values in form of
AxB where A is the number of threads to run in
each thread block and B is the number of thread
blocks to launch. If less values than devices in use
are provided, the last value will be used for
the remaining devices. If you don't need to vary the
value between devices, you can just enter a single
value and it will be used for all devices.
--bfactor=X Enables running the Cryptonight kernel in smaller pieces.\n\
The kernel will be run in 2^X parts according to bfactor,\n\
with a small pause between parts, specified by --bsleep.\n\
This is a per-device setting like the launch config.\n\
(default: 0 (no splitting) on Linux, 6 (64 parts) on Windows)\n\
--bsleep=X Insert a delay of X microseconds between kernel launches.\n\
Use in combination with --bfactor to mitigate the lag\n\
when running on your primary GPU.\n\
This is a per-device setting like the launch config.\n\
-f, --diff Divide difficulty by this factor (std is 1)
-o, --url=URL URL of mining server (default: " DEF_RPC_URL ")
-O, --userpass=U:P username:password pair for mining server
-u, --user=USERNAME username for mining server
-p, --pass=PASSWORD password for mining server
--cert=FILE certificate for mining server using SSL
-x, --proxy=[PROTOCOL://]HOST[:PORT] connect through a proxy
-t, --threads=N number of miner threads
(default: number of nVidia GPUs in your system)
-r, --retries=N number of times to retry if a network call fails
(default: retry indefinitely)
-R, --retry-pause=N time to pause between retries, in seconds (default: 15)
-T, --timeout=N network timeout, in seconds (default: 270)
-k, --keepalive send keepalive requests to avoid a stratum timeout
-s, --scantime=N upper bound on time spent scanning current work when
long polling is unavailable, in seconds (default: 5)
--no-longpoll disable X-Long-Polling support
--no-stratum disable X-Stratum support
-q, --quiet disable per-thread hashmeter output
-D, --debug enable debug output
--color enable color output
-P, --protocol-dump verbose dump of protocol-level activities
-B, --background run the miner in the background (Linux only)
--benchmark run in offline benchmark mode
-c, --config=FILE load a JSON-format configuration file
-V, --version display version information and exit
-h, --help display this help text and exit
>>> AUTHORS <<<
Notable contributors to this application are:
KlausT:
- various fixes and optimizations
tsiv:
- CUDA implementation for the Cryptonight algorithm.
Christian Buchner, Christian H. (Germany):
- modifying the original pooler-cpuminer for use with CUDA.
Jeff Garzik, pooler + contributors:
- The original pooler-cpuminer project
LucasJones:
- JSON-RPC 2.0 handling and the Cryptonight C-code comes
from his cpuminer fork, cpuminer-multi
Source code is included to satisfy GNU GPL V3 requirements.