Bitcoin Forum
May 06, 2024, 05:27:01 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 ... 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 114 115 [116] 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 ... 197 »
  Print  
Author Topic: [LOCKED] cpuminer-opt v3.12.3, open source optimized multi-algo CPU miner  (Read 443972 times)
onedeveloper
Full Member
***
Offline Offline

Activity: 143
Merit: 100


View Profile
March 18, 2017, 06:13:14 PM
 #2301

Sorry! I had not analyzed the full source for your miner  Sad

What I have been doing for some time is testing the capabilities and limits of the miner. I have a simple laptop for my experiments. This is information from your miner:

  • CPU: Intel(R) Core(TM) i5-4200U CPU @ 1.60GHz
  • CPU features: SSE2 AES AVX AVX2

This CPU has only 3MB Level 3 cache, 2 cores and 2 threads per core (4 logical CPUs), so I have tried to maximize my mining capabilities under Windows 8.1. First, I mined XMR using 4 threads for a total of 55 to 60 H/s. After cheking the cache, I got the same value with only 2 threads. Finally, I have settled on using 1 thread at 25 H/s and the other 3 threads for mining Lyra2re2 at a combined total of 250-300 kH/s.

After thinking on what I've done, I can safely say that this is a viable Monero mining strategy for Ryzen 7 family of processors (8 cores / 16 threads, divided up into two CCXs of 4 cores / 8 threads each, and 8MB L3 cache each):

** Monero1.bat
Code:
REM ** USE THE FIRST CCX MAXIMIZING L3-CACHE
cpuminer-aes-avx2.exe -a cryptonight -t 4 --cpu-affinity 0x000F -o <POOL> -u <USER>-p <PASS>
PAUSE

** Monero2.bat
Code:
REM ** USE THE SECOND CCX MAXIMIZING L3-CACHE
cpuminer-aes-avx2.exe -a cryptonight -t 4 --cpu-affinity 0x0F00 -o <POOL> -u <USER>-p <PASS>
PAUSE

** OtherCoins.bat
Code:
REM ** USE THE REMAINING THREADS ON THE TWO CCXs DISREGARDING L3-CACHE
cpuminer-aes-avx2.exe -a <ALGO> -t 8 --cpu-affinity 0xF0F0 -o <POOL> -u <USER>-p <PASS>
PAUSE

** MineAll.bat
Code:
REM ** LAUNCH ALL MINERS AT ONCE
START Monero1.bat
START Monero2.bat
START OtherCoins.bat
PAUSE

Alternatively, you can use only 6 threads on the third file so you can use the remaining two threads to browse the web or do other tasks while mining in the background.
"In a nutshell, the network works like a distributed timestamp server, stamping the first transaction to spend a coin. It takes advantage of the nature of information being easy to spread but hard to stifle." -- Satoshi
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1714973221
Hero Member
*
Offline Offline

Posts: 1714973221

View Profile Personal Message (Offline)

Ignore
1714973221
Reply with quote  #2

1714973221
Report to moderator
1714973221
Hero Member
*
Offline Offline

Posts: 1714973221

View Profile Personal Message (Offline)

Ignore
1714973221
Reply with quote  #2

1714973221
Report to moderator
joblo (OP)
Legendary
*
Offline Offline

Activity: 1470
Merit: 1114


View Profile
March 18, 2017, 06:42:26 PM
 #2302


After thinking on what I've done, I can safely say that this is a viable Monero mining strategy for Ryzen 7 family of processors (8 cores / 16 threads, divided up into two CCXs of 4 cores / 8 threads each, and 8MB L3 cache each):


I think Ryzen 5 will be an excellent architecture for mining cryptonight due to it's L3 cache size and low price. The extra cores
of the R7 aren't needed for cryptonight. The more compute bound algos may do better with R7, but they also do better with GPU.

AKA JayDDee, cpuminer-opt developer. https://github.com/JayDDee/cpuminer-opt
https://bitcointalk.org/index.php?topic=5226770.msg53865575#msg53865575
BTC: 12tdvfF7KmAsihBXQXynT6E6th2c2pByTT,
onedeveloper
Full Member
***
Offline Offline

Activity: 143
Merit: 100


View Profile
March 18, 2017, 06:57:56 PM
 #2303


After thinking on what I've done, I can safely say that this is a viable Monero mining strategy for Ryzen 7 family of processors (8 cores / 16 threads, divided up into two CCXs of 4 cores / 8 threads each, and 8MB L3 cache each):


I think Ryzen 5 will be an excellent architecture for mining cryptonight due to it's L3 cache size and low price. The extra cores
of the R7 aren't needed for cryptonight. The more compute bound algos may do better with R7, but they also do better with GPU.

You are right. They can be entirely devoted to cryptonight and leave some free cores for other tasks at a reasonable price. The R.O.I. can be interesting to calculate once we have the first units to test. These will be the setups in this case:

  • Ryzen 5 1400 will have 2 + 2 cores and 8 threads with 8MB L3 cache in total (4MB per CCX). This will allow to use "Monero1.bat" with "--cpu-affinity 0x03 -t 2" and "Monero2.bat" with "--cpu-affinity 0x30 -t 2". 4 threads are free to use in other tasks.
  • Ryzen 5 1500X will have the same core and thread count as above, but with 16MB L3 cache, so it will use the "Monero1.bat" with "--cpu-affinity 0x0F -t 4" and "Monero2.bat" with "--cpu-affinity 0xF0 -t 4". The whole CPU will be mining Cryptonight.
  • Ryzen 5 1600 will have 3 + 3 cores and 12 threads with 16MB L3 cache. They must use "Monero1.bat" with "--cpu-affinity 0x00F -t 4" and "Monero2.bat" with "--cpu-affinity 0xF00 -t 4" and still have 4 free threads to use elsewhere. This applies too to Ryzen 5 1600X CPU.
felixbrucker
Hero Member
*****
Offline Offline

Activity: 700
Merit: 500


View Profile WWW
March 18, 2017, 09:08:30 PM
Last edit: March 18, 2017, 09:29:38 PM by felixbrucker
 #2304

Looks like a problem with longpoll, try --no-longpoll.

edit: also try cpuminer-multi, if it works I can compare.

i have executed it with the --no-longpoll option, same error it seems, also tested with cpuminer-multi with and without --no-longpoll, same result:

Code:
felix@mobile:~/local projects/cpuminer-multi$ ./cpuminer -a cryptonight -t 3  -o http://10.1.1.173:41264 -DP --no-longpoll
** cpuminer-multi 1.3.1 by tpruvot@github **
BTC donation address: 1FhDPLPpw18X4srecguG3MxJYe4a1JsZnd (tpruvot)

[2017-03-18 22:06:50] Using JSON-RPC 2.0
[2017-03-18 22:06:50] CPU Supports AES-NI: YES
[2017-03-18 22:06:50] JSON protocol request:
{"method": "login", "params": {"login": "", "pass": "", "agent": "cpuminer-multi/1.3.1"}, "id": 1}

* Rebuilt URL to: http://10.1.1.173:41264/
*   Trying 10.1.1.173...
* TCP_NODELAY set
[2017-03-18 22:06:50] Binding thread 0 to cpu 0 (mask 1)
[2017-03-18 22:06:50] Binding thread 1 to cpu 1 (mask 2)
[2017-03-18 22:06:50] 3 miner threads started, using 'cryptonight' algorithm.
[2017-03-18 22:06:50] Binding thread 2 to cpu 2 (mask 4)
* Connected to 10.1.1.173 (10.1.1.173) port 41264 (#0)
* Server auth using Basic with user ''
> POST / HTTP/1.1
Host: 10.1.1.173:41264
Authorization: Basic Og==
Accept: */*
Accept-Encoding: deflate, gzip
Content-Type: application/json
Content-Length: 98
User-Agent: cpuminer-multi/1.3.1
X-Mining-Extensions: longpoll reject-reason
Expect: 100-continue

* Done waiting for 100-continue
< HTTP/1.1 200 OK
< Content-Length: 77
< Server: CryptoNote-based HTTP server
<
* Connection #0 to host 10.1.1.173 left intact
[2017-03-18 22:06:51] JSON protocol response:
{
   "error": {
      "code": -32601,
      "message": "Method not found"
   },
   "id": 1,
   "jsonrpc": "2.0"
}
[2017-03-18 22:06:51] JSON-RPC call failed: Method not found
[2017-03-18 22:06:51] ...retry after 10 seconds
^C[2017-03-18 22:06:54] SIGINT received, exiting

i have tested this with the wallet rpc port, with the daemon rpc port i get:
Code:
felix@mobile:~/local projects/cpuminer-multi$ ./cpuminer -a cryptonight -t 3  -o http://10.1.1.173:41263 -DP --no-longpoll
** cpuminer-multi 1.3.1 by tpruvot@github **
BTC donation address: 1FhDPLPpw18X4srecguG3MxJYe4a1JsZnd (tpruvot)

[2017-03-18 22:20:39] Using JSON-RPC 2.0
[2017-03-18 22:20:39] CPU Supports AES-NI: YES
[2017-03-18 22:20:39] JSON protocol request:
{"method": "login", "params": {"login": "", "pass": "", "agent": "cpuminer-multi/1.3.1"}, "id": 1}

* Rebuilt URL to: http://10.1.1.173:41263/
*   Trying 10.1.1.173...
* TCP_NODELAY set
[2017-03-18 22:20:39] Binding thread 0 to cpu 0 (mask 1)
[2017-03-18 22:20:39] 3 miner threads started, using 'cryptonight' algorithm.
[2017-03-18 22:20:39] Binding thread 1 to cpu 1 (mask 2)
[2017-03-18 22:20:39] Binding thread 2 to cpu 2 (mask 4)
* Connected to 10.1.1.173 (10.1.1.173) port 41263 (#0)
* Server auth using Basic with user ''
> POST / HTTP/1.1
Host: 10.1.1.173:41263
Authorization: Basic Og==
Accept: */*
Accept-Encoding: deflate, gzip
Content-Type: application/json
Content-Length: 98
User-Agent: cpuminer-multi/1.3.1
X-Mining-Extensions: longpoll reject-reason
Expect: 100-continue

* Done waiting for 100-continue
< HTTP/1.1 404 Not Found
< Content-Length: 27
< Server: CryptoNote-based HTTP server
* HTTP error before end of send, stop sending
<
* Closing connection 0
[2017-03-18 22:20:40] JSON decode failed(1): '[' or '{' expected near 'Requested'
[2017-03-18 22:20:40] ...retry after 10 seconds
^C[2017-03-18 22:20:41] SIGINT received, exiting

to me it seems the rpc request method is "login" but this only works for pools

afaik one needs to connect to the daemon and use getblocktemplate?
atleast for the wallet there is no mining related method (https://getmonero.org/knowledge-base/developer-guides/wallet-rpc)
whereas the daemon rpc has a getblocktemplate method (https://getmonero.org/knowledge-base/developer-guides/daemon-rpc)

no matter which features is disable it always uses "login" method it seems (no-stratum, no-getwork, etc)

edit: after taking a look at this (https://github.com/sammy007/monero-stratum/blob/master/go-pool/rpc/rpc.go), im pretty sure for solo mining to work cpuminer(-opt) needs the getblocktemplate support for cryptonight coins integrated first
joblo (OP)
Legendary
*
Offline Offline

Activity: 1470
Merit: 1114


View Profile
March 18, 2017, 10:03:45 PM
 #2305


no matter which features is disable it always uses "login" method it seems (no-stratum, no-getwork, etc)

edit: after taking a look at this (https://github.com/sammy007/monero-stratum/blob/master/go-pool/rpc/rpc.go), im pretty sure for solo mining to work cpuminer(-opt) needs the getblocktemplate support for cryptonight coins integrated first

Yeah, no login method, but I don't think it's GBT related. I found an intereting bit of code

cpu-miner.c line 1264
Code:
        if(jsonrpc_2 && !have_stratum)
                ok = rpc2_workio_login(curl);
        while (ok)
        {

Notice no "else" clause so no login attempt here for other algos. You could try commenting out the login to see what happens.

I also looked at GBT code. I'm not sure now why I defaulted to disable GBT for RPC2. cpuminer-multi doesn't do it. You could try
commenting that out in ago-gate-api.c line 242.

I don't really expect either of these to fix it but it might eliminate some of the noise.

AKA JayDDee, cpuminer-opt developer. https://github.com/JayDDee/cpuminer-opt
https://bitcointalk.org/index.php?topic=5226770.msg53865575#msg53865575
BTC: 12tdvfF7KmAsihBXQXynT6E6th2c2pByTT,
felixbrucker
Hero Member
*****
Offline Offline

Activity: 700
Merit: 500


View Profile WWW
March 18, 2017, 10:34:53 PM
 #2306


no matter which features is disable it always uses "login" method it seems (no-stratum, no-getwork, etc)

edit: after taking a look at this (https://github.com/sammy007/monero-stratum/blob/master/go-pool/rpc/rpc.go), im pretty sure for solo mining to work cpuminer(-opt) needs the getblocktemplate support for cryptonight coins integrated first

Yeah, no login method, but I don't think it's GBT related. I found an intereting bit of code

cpu-miner.c line 1264
Code:
        if(jsonrpc_2 && !have_stratum)
                ok = rpc2_workio_login(curl);
        while (ok)
        {

Notice no "else" clause so no login attempt here for other algos. You could try commenting out the login to see what happens.

I also looked at GBT code. I'm not sure now why I defaulted to disable GBT for RPC2. cpuminer-multi doesn't do it. You could try
commenting that out in ago-gate-api.c line 242.

I don't really expect either of these to fix it but it might eliminate some of the noise.

with the workio_login thing commented out i get:
Code:
[2017-03-18 23:28:23] 1 miner threads started, using 'cryptonight' algorithm.
[2017-03-18 23:28:23] Tried to call rpc2 command before authentication
[2017-03-18 23:28:23] getblocktemplate failed, falling back to getwork
[2017-03-18 23:28:23] Tried to call rpc2 command before authentication
[2017-03-18 23:28:23] json_rpc_call failed, retry after 10 seconds

i then commented out line 242 and got the same output as above

i then uncommented the workio_login thingy and it went back to the initial output posted before


joblo (OP)
Legendary
*
Offline Offline

Activity: 1470
Merit: 1114


View Profile
March 18, 2017, 11:02:37 PM
 #2307


with the workio_login thing commented out i get:
Code:
[2017-03-18 23:28:23] 1 miner threads started, using 'cryptonight' algorithm.
[2017-03-18 23:28:23] Tried to call rpc2 command before authentication
[2017-03-18 23:28:23] getblocktemplate failed, falling back to getwork
[2017-03-18 23:28:23] Tried to call rpc2 command before authentication
[2017-03-18 23:28:23] json_rpc_call failed, retry after 10 seconds

i then commented out line 242 and got the same output as above

i then uncommented the workio_login thingy and it went back to the initial output posted before

rpc2_workio_login is called regardless of gbt or not. The login method isn't recongnized
and skipping it results in no authentication. With no working model and no real understanding of the
protocol I think I'm stuck.

AKA JayDDee, cpuminer-opt developer. https://github.com/JayDDee/cpuminer-opt
https://bitcointalk.org/index.php?topic=5226770.msg53865575#msg53865575
BTC: 12tdvfF7KmAsihBXQXynT6E6th2c2pByTT,
felixbrucker
Hero Member
*****
Offline Offline

Activity: 700
Merit: 500


View Profile WWW
March 19, 2017, 07:52:31 AM
 #2308


with the workio_login thing commented out i get:
Code:
[2017-03-18 23:28:23] 1 miner threads started, using 'cryptonight' algorithm.
[2017-03-18 23:28:23] Tried to call rpc2 command before authentication
[2017-03-18 23:28:23] getblocktemplate failed, falling back to getwork
[2017-03-18 23:28:23] Tried to call rpc2 command before authentication
[2017-03-18 23:28:23] json_rpc_call failed, retry after 10 seconds

i then commented out line 242 and got the same output as above

i then uncommented the workio_login thingy and it went back to the initial output posted before

rpc2_workio_login is called regardless of gbt or not. The login method isn't recongnized
and skipping it results in no authentication. With no working model and no real understanding of the
protocol I think I'm stuck.

damn, thanks for looking into it though, most profitable coins for cpu mining are either cryptonight or zoin/zcoin or something else/new

as a matter of fact i also tested zcoinclassic over this night but it seems their wallet contains the same bug hexxdev encountered in the imported changes from zcoin which my old wallet hadnt had: zcoin classics avg ttf is 0.6h with my hashrate but no block found over the last 7h, might be the same for zcoin itself (not tested)
giagge
Legendary
*
Offline Offline

Activity: 1134
Merit: 1001


View Profile
March 19, 2017, 12:51:58 PM
 #2309

Guys , anyone know a best pool for mining monero ? i want try with i7 5820k @ 4 ghz , and i5 6600 , im waiting ryzen 1700 .

Anyone ? .
onedeveloper
Full Member
***
Offline Offline

Activity: 143
Merit: 100


View Profile
March 19, 2017, 01:18:18 PM
 #2310

Guys , anyone know a best pool for mining monero ? i want try with i7 5820k @ 4 ghz , and i5 6600 , im waiting ryzen 1700 .

Anyone ? .

Personally, I use nicehash, which mines XMR direct to your BTC account, and this cpuminer-opt client. This is what you need to use:

Code:
cpuminer-aes-avx2.exe -a cryptonight -o stratum+tcp://cryptonight.eu.nicehash.com:3355 -u <btc-wallet> -p x

Other interesting pool is MoneroPool:

Code:
cpuminer-aes-avx2.exe -a cryptonight -o stratum+tcp://monerol.com:3333 -u <monero-wallet>.<difficulty> -p x

If you will use Ryzen, read my guide to maximize profits with Monero in Ryzen some comments above.

HexxoDev
Full Member
***
Offline Offline

Activity: 154
Merit: 100


View Profile
March 20, 2017, 06:47:13 AM
 #2311


with the workio_login thing commented out i get:
Code:
[2017-03-18 23:28:23] 1 miner threads started, using 'cryptonight' algorithm.
[2017-03-18 23:28:23] Tried to call rpc2 command before authentication
[2017-03-18 23:28:23] getblocktemplate failed, falling back to getwork
[2017-03-18 23:28:23] Tried to call rpc2 command before authentication
[2017-03-18 23:28:23] json_rpc_call failed, retry after 10 seconds

i then commented out line 242 and got the same output as above

i then uncommented the workio_login thingy and it went back to the initial output posted before

rpc2_workio_login is called regardless of gbt or not. The login method isn't recongnized
and skipping it results in no authentication. With no working model and no real understanding of the
protocol I think I'm stuck.

damn, thanks for looking into it though, most profitable coins for cpu mining are either cryptonight or zoin/zcoin or something else/new

as a matter of fact i also tested zcoinclassic over this night but it seems their wallet contains the same bug hexxdev encountered in the imported changes from zcoin which my old wallet hadnt had: zcoin classics avg ttf is 0.6h with my hashrate but no block found over the last 7h, might be the same for zcoin itself (not tested)
Same bugs there, zcoin, zcoinc, but you could try gbt since the miner is now fixed.

felixbrucker
Hero Member
*****
Offline Offline

Activity: 700
Merit: 500


View Profile WWW
March 20, 2017, 08:22:00 AM
 #2312

Same bugs there, zcoin, zcoinc, but you could try gbt since the miner is now fixed.

i have done so, didnt work out sadly
HexxoDev
Full Member
***
Offline Offline

Activity: 154
Merit: 100


View Profile
March 20, 2017, 12:27:15 PM
 #2313

Same bugs there, zcoin, zcoinc, but you could try gbt since the miner is now fixed.

i have done so, didnt work out sadly
Zcoin dev seems not to be so eager to fix it, and no 64bit release.

joblo (OP)
Legendary
*
Offline Offline

Activity: 1470
Merit: 1114


View Profile
March 20, 2017, 02:27:56 PM
 #2314


damn, thanks for looking into it though, most profitable coins for cpu mining are either cryptonight or zoin/zcoin or something else/new


Did you try ccminer-tpruvot? It's coded differently and doesn't have the rpc2-login call in workio_thread.

AKA JayDDee, cpuminer-opt developer. https://github.com/JayDDee/cpuminer-opt
https://bitcointalk.org/index.php?topic=5226770.msg53865575#msg53865575
BTC: 12tdvfF7KmAsihBXQXynT6E6th2c2pByTT,
felixbrucker
Hero Member
*****
Offline Offline

Activity: 700
Merit: 500


View Profile WWW
March 20, 2017, 03:29:08 PM
 #2315


damn, thanks for looking into it though, most profitable coins for cpu mining are either cryptonight or zoin/zcoin or something else/new


Did you try ccminer-tpruvot? It's coded differently and doesn't have the rpc2-login call in workio_thread.

just tried, it issues the following rpc method:
Code:
[2017-03-20 16:17:33] JSON protocol request:
{"method":"getwork","params":[],"id":0}

which results in
Code:
[2017-03-20 16:17:34] JSON decode failed(1): '[' or '{' expected near 'Requested'
[2017-03-20 16:17:34] Requested url is not found
[2017-03-20 16:17:34] get_work failed, retry after 30 seconds

seems ccminer is not compatible with solo mining as else it has to request the getblocktemplate method (?)
giagge
Legendary
*
Offline Offline

Activity: 1134
Merit: 1001


View Profile
March 21, 2017, 02:50:22 PM
 #2316

Guys , anyone know a best pool for mining monero ? i want try with i7 5820k @ 4 ghz , and i5 6600 , im waiting ryzen 1700 .

Anyone ? .

Personally, I use nicehash, which mines XMR direct to your BTC account, and this cpuminer-opt client. This is what you need to use:

Code:
cpuminer-aes-avx2.exe -a cryptonight -o stratum+tcp://cryptonight.eu.nicehash.com:3355 -u <btc-wallet> -p x

Other interesting pool is MoneroPool:

Code:
cpuminer-aes-avx2.exe -a cryptonight -o stratum+tcp://monerol.com:3333 -u <monero-wallet>.<difficulty> -p x

If you will use Ryzen, read my guide to maximize profits with Monero in Ryzen some comments above.



Why you convert on btc ? i want keep xmr . What is the guide for ryzen ? .
onedeveloper
Full Member
***
Offline Offline

Activity: 143
Merit: 100


View Profile
March 21, 2017, 03:28:13 PM
 #2317

Guys , anyone know a best pool for mining monero ? i want try with i7 5820k @ 4 ghz , and i5 6600 , im waiting ryzen 1700 .

Anyone ? .

Personally, I use nicehash, which mines XMR direct to your BTC account, and this cpuminer-opt client. This is what you need to use:

Code:
cpuminer-aes-avx2.exe -a cryptonight -o stratum+tcp://cryptonight.eu.nicehash.com:3355 -u <btc-wallet> -p x

Other interesting pool is MoneroPool:

Code:
cpuminer-aes-avx2.exe -a cryptonight -o stratum+tcp://monerol.com:3333 -u <monero-wallet>.<difficulty> -p x

If you will use Ryzen, read my guide to maximize profits with Monero in Ryzen some comments above.



Why you convert on btc ? i want keep xmr . What is the guide for ryzen ? .

As you can see, I also showed you how to mine XMR directly into your wallet using a pool. Regarding the "Ryzen guide", this is the relevant message link on this thread

https://bitcointalk.org/index.php?topic=1326803.msg18239788#msg18239788

giagge
Legendary
*
Offline Offline

Activity: 1134
Merit: 1001


View Profile
March 21, 2017, 04:56:15 PM
 #2318

Guys , anyone know a best pool for mining monero ? i want try with i7 5820k @ 4 ghz , and i5 6600 , im waiting ryzen 1700 .

Anyone ? .

Personally, I use nicehash, which mines XMR direct to your BTC account, and this cpuminer-opt client. This is what you need to use:

Code:
cpuminer-aes-avx2.exe -a cryptonight -o stratum+tcp://cryptonight.eu.nicehash.com:3355 -u <btc-wallet> -p x

Other interesting pool is MoneroPool:

Code:
cpuminer-aes-avx2.exe -a cryptonight -o stratum+tcp://monerol.com:3333 -u <monero-wallet>.<difficulty> -p x

If you will use Ryzen, read my guide to maximize profits with Monero in Ryzen some comments above.



Why you convert on btc ? i want keep xmr . What is the guide for ryzen ? .

As you can see, I also showed you how to mine XMR directly into your wallet using a pool. Regarding the "Ryzen guide", this is the relevant message link on this thread

https://bitcointalk.org/index.php?topic=1326803.msg18239788#msg18239788



Fantastick! with -t 8 --cpu-affinity 0xF0F0 , i have 640 hs on hexxcoin with ryzen 1700 default 3ghz , with .bat normal 16 thread have only 560 hs . Only 35 watt power comsumption! .
onedeveloper
Full Member
***
Offline Offline

Activity: 143
Merit: 100


View Profile
March 21, 2017, 05:09:34 PM
 #2319

Glad to help you earn money and keep your CPU cool  Cool

Now spread the word!  Grin
LIghtvelocityCoin
Sr. Member
****
Offline Offline

Activity: 320
Merit: 250


View Profile
March 23, 2017, 05:24:28 AM
 #2320

Dear Dev,

I tried to use cpuminer to mine xmr with my computer.

It shows:

[2017-03-23 13:23:08] Starting Stratum on stratum+tcp://xmr.crypto-pool.fr:3333
[2017-03-23 13:23:08] 24 miner threads started, using 'cryptonight' algorithm.
[2017-03-23 13:23:09] API bind to port 4048 failed - trying again in 20sec
[2017-03-23 13:23:11] Stratum difficulty set to 18000
[2017-03-23 13:23:15] CPU #6: 66 H, 18.39 H/s


Is it ok for API failed?

Pages: « 1 ... 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 114 115 [116] 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 ... 197 »
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!