|
Post by sedin on Nov 1, 2017 5:33:25 GMT -6
It is currently possible to mine on a Nvidia card with this miner: github.com/xmrMiner/xmrMiner-Win64Just download and extract the zip, then modify the xmrMiner_easyStart.bat as follow: set xmrAddress= [public wallet key]
set poolPassword=x
set poolUrl=[pool port 7777]
set launchParam=--launch=96x15
set bFactor=10
set bSleep=25
xmrMiner_0.2.1.exe --url=%poolUrl% -u %xmrAddress% -p %poolPassword% %launchParam% --bfactor=%bFactor% --bsleep=%bSleep%
pause Don't forget to change pool's address and your public wallet key (without bracket). You may want to change --launch according to your card, follow these rules: --launch=TxB
T = threads used B = CUDA blocks started (must be a multiple of the multiprocessors M on the GPU)
The equations must be full filled: T * B * 2 <= 2000 and B mod M == 0. For instance, the GTX Titan X has 24 multiprocessors M, this means a valid and good starting configuration is --launch=16x48 and full fill all restrictions 16 * 48 * 2 = 1536 and 48 mod 24 = 0. For Pascal architecture (GTX 10xx), you may ignore the '* 2' restriction. You can find M on the internet by searching your card's specs I have a OC GTX 1070 (where M = 15) and --launch=96x15 is working perfectly (15 % 15 = 0 and 96*15 = 1550 <= 200), allowing me to reach ~670H/s. You may have to DL cudart64_80.dll (357.43 KB) and put it in your miner directory. Since some people don't know I mean with the bracket and the url, here my .bat: set xmrAddress=etnxxxxxx set poolPassword=x set poolUrl=stratum+tcp://electroneum.hashparty.io:3333 set launchParam=--launch=96x15 set bFactor=10 set bSleep=25 xmrMiner_0.2.1.exe --url=%poolUrl% -u %xmrAddress% -p %poolPassword% %launchParam% --bfactor=%bFactor% --bsleep=%bSleep% --donate=0 pause
|
|
|
Post by sedin on Nov 1, 2017 5:48:44 GMT -6
Here a screen:
|
|
|
Post by mrnewguy on Nov 1, 2017 6:30:32 GMT -6
nice hashrate!
|
|
|
Post by circlecryptocurrency on Nov 1, 2017 7:29:11 GMT -6
It is currently possible to mine with Nvidia cart with this miner: github.com/xmrMiner/xmrMiner-Win64Just download and extract the zip, then modify the xmrMiner_easyStart.bat as follow: set xmrAddress= [public adres]
set poolPassword=x
set poolUrl=[pool port 7777]
set launchParam=--launch=96x15
set bFactor=10
set bSleep=25
xmrMiner_0.2.1.exe --url=%poolUrl% -u %xmrAddress% -p %poolPassword% %launchParam% --bfactor=%bFactor% --bsleep=%bSleep%
pause You may want to change --launch according ot your card, follow these rules:
--launch=TxB.
T = threads used B = CUDA blocks started (must be a multiple of the multiprocessors M on the GPU)
The equations must be full filled: T * B * 2 <= 2000 and B mod M == 0.
For instance, he GTX Titan X has 24 multiprocessors M, this means a valid and good starting configuration is --launch=16x48 and full fill all restrictions 16 * 48 * 2 = 1536 and 48 mod 24 = 0. For Pascal architecture (GTX 10xx), you may ignore the '* 2' restriction. I have a OC GTX 1070 (where M = 15) and --launch=64*30 is working perfectly (30 % 15 = 0 and 64*30 = 1920 <= 200), allowing me to reach ~670H/s. Hi Sedin, I'm setting it up now. I'm such a noob so I'll apologies for my amateurishness. Where do i find multiple of the multiprocessors M on the GPU?
|
|
|
Post by happyboy on Nov 1, 2017 7:31:43 GMT -6
my miner does not work, no hashrate is showing. pls. help.
|
|
|
Post by mrnewguy on Nov 1, 2017 7:33:30 GMT -6
my miner does not work, no hashrate is showing. pls. help. Which Miner?
|
|
|
Post by circlecryptocurrency on Nov 1, 2017 7:34:14 GMT -6
my miner does not work, no hashrate is showing. pls. help. Please post under a different thread. You need to deactivate your windows firewall and any others. Try it. If it still doesn't work, you need to uninstal ElectroneumPoolMiner completely. Redownload it. Reinstall it (all this with all firewalls and antivirus off) and load it up. Put in your ETN public wallet address, select 5555 if you have an i5 processor, or 7777 if you have an i7. Set number of threads to 2-6 and make sure pool region is the region you're in. Then hit start. But please, this thread it for setting up a GPU manual min. Sorry.
|
|
|
Post by circlecryptocurrency on Nov 1, 2017 7:36:24 GMT -6
It is currently possible to mine with Nvidia cart with this miner: github.com/xmrMiner/xmrMiner-Win64Just download and extract the zip, then modify the xmrMiner_easyStart.bat as follow: set xmrAddress= [public adres]
set poolPassword=x
set poolUrl=[pool port 7777]
set launchParam=--launch=96x15
set bFactor=10
set bSleep=25
xmrMiner_0.2.1.exe --url=%poolUrl% -u %xmrAddress% -p %poolPassword% %launchParam% --bfactor=%bFactor% --bsleep=%bSleep%
pause You may want to change --launch according ot your card, follow these rules:
--launch=TxB.
T = threads used B = CUDA blocks started (must be a multiple of the multiprocessors M on the GPU)
The equations must be full filled: T * B * 2 <= 2000 and B mod M == 0.
For instance, he GTX Titan X has 24 multiprocessors M, this means a valid and good starting configuration is --launch=16x48 and full fill all restrictions 16 * 48 * 2 = 1536 and 48 mod 24 = 0. For Pascal architecture (GTX 10xx), you may ignore the '* 2' restriction. I have a OC GTX 1070 (where M = 15) and --launch=64*30 is working perfectly (30 % 15 = 0 and 64*30 = 1920 <= 200), allowing me to reach ~670H/s. Sorry, Sedin. I'm setting it up now. Sorry for my amateurishness. Where do i find multiple of the multiprocessors M on the GPU? For the threads part i'm currently mining using my CPU with 3 threads. I just don't know how to find out the multiprocessors part. Thanks.
|
|
|
Post by sedin on Nov 1, 2017 7:43:21 GMT -6
It is currently possible to mine with Nvidia cart with this miner: github.com/xmrMiner/xmrMiner-Win64Just download and extract the zip, then modify the xmrMiner_easyStart.bat as follow: set xmrAddress= [public adres]
set poolPassword=x
set poolUrl=[pool port 7777]
set launchParam=--launch=96x15
set bFactor=10
set bSleep=25
xmrMiner_0.2.1.exe --url=%poolUrl% -u %xmrAddress% -p %poolPassword% %launchParam% --bfactor=%bFactor% --bsleep=%bSleep%
pause You may want to change --launch according ot your card, follow these rules:
--launch=TxB.
T = threads used B = CUDA blocks started (must be a multiple of the multiprocessors M on the GPU)
The equations must be full filled: T * B * 2 <= 2000 and B mod M == 0.
For instance, he GTX Titan X has 24 multiprocessors M, this means a valid and good starting configuration is --launch=16x48 and full fill all restrictions 16 * 48 * 2 = 1536 and 48 mod 24 = 0. For Pascal architecture (GTX 10xx), you may ignore the '* 2' restriction. I have a OC GTX 1070 (where M = 15) and --launch=64*30 is working perfectly (30 % 15 = 0 and 64*30 = 1920 <= 200), allowing me to reach ~670H/s. Sorry, Sedin. I'm setting it up now. Sorry for my amateurishness. Where do i find multiple of the multiprocessors M on the GPU? For the threads part i'm currently mining using my CPU with 3 threads. I just don't know how to find out the multiprocessors part. Thanks. You can find the number of multiprocessors on internet, jsut search your card's specs. The number of thread have nothing to do with your CPU, but keeping it as a multiple of 16 seems to work better.
|
|
|
Post by circlecryptocurrency on Nov 1, 2017 8:38:32 GMT -6
Sorry, Sedin. I'm setting it up now. Sorry for my amateurishness. Where do i find multiple of the multiprocessors M on the GPU? For the threads part i'm currently mining using my CPU with 3 threads. I just don't know how to find out the multiprocessors part. Thanks. You can find the number of multiprocessors on internet, jsut search your card's specs. The number of thread have nothing to do with your CPU, but keeping it as a multiple of 16 seems to work better. Thanks for the info, still nothing mentioned about multiprocessors: CUDA Cores : 1664 Base Clock (MHz) : 1050 Boost Clock (MHz) : 1178 Texture Fill Rate (GigaTexels/sec): 109
|
|
|
Post by sedin on Nov 1, 2017 8:42:12 GMT -6
You can find the number of multiprocessors on internet, jsut search your card's specs. The number of thread have nothing to do with your CPU, but keeping it as a multiple of 16 seems to work better. Thanks for the info, still nothing mentioned about multiprocessors: CUDA Cores : 1664 Base Clock (MHz) : 1050 Boost Clock (MHz) : 1178 Texture Fill Rate (GigaTexels/sec): 109 What is your GPU?
|
|
|
Post by circlecryptocurrency on Nov 1, 2017 8:47:21 GMT -6
I think I got it now.
My GTX970 has 13 Streaming Multiprocessors Maxwell (SMM). And I'd like to run at 3 threads. So, in the xmrMiner_easyStart.txt file it will look like:
set (my public wallet code)
set poolPassword=x
set poolUrl=pool port 5555
set launchParam=--launch=46x39
set bFactor=10
set bSleep=25
xmrMiner_0.2.1.exe --url=%poolUrl% -u %xmrAddress% -p %poolPassword% %launchParam% --bfactor=%bFactor% --bsleep=%bSleep%
pause
|
|
|
Post by circlecryptocurrency on Nov 1, 2017 8:47:42 GMT -6
Is this right?
|
|
|
Post by sedin on Nov 1, 2017 8:51:16 GMT -6
I think I got it now. My GTX970 has 13 Streaming Multiprocessors Maxwell (SMM). And I'd like to run at 3 threads. So, in the xmrMiner_easyStart.txt file it will look like: set (my public wallet code) set poolPassword=x set poolUrl=pool port 5555 set launchParam=--launch=46x39 set bFactor=10 set bSleep=25 xmrMiner_0.2.1.exe --url=%poolUrl% -u %xmrAddress% -p %poolPassword% %launchParam% --bfactor=%bFactor% --bsleep=%bSleep% pause You're not on a Pscal architecture, so don't forget the *2. 46*39*2 is way over 2000. Try: set launchParam=--launch=46x39
|
|
|
Post by circlecryptocurrency on Nov 1, 2017 8:53:59 GMT -6
Thanks Sedin, that's what I've already got it set to: set launchParam=--launch=46x39?
|
|