Post
Topic
Board Mining (Altcoins)
Re: [XMR] JCE Miner Cryptonight/forks, now with GPU!
by
smparo
on 04/11/2018, 08:32:23 UTC
Can someone share a working configuration (gpu and mem clock/v and config) for v8 for rx580 8Gb/4Gb?
On v6-v7 I have made a configurations but with v8 I'm unable to get one that stay stable!!!  Sad Cry
Actualy I'm on 1150gpu/2000mem/850mv and

{ "mode" : "GPU", "worksize" : 8, "alpha" : 64, "beta" : 8, "index" : X, "multi_hash":1696 }    for 8Gb (doublethread)
{ "mode" : "GPU", "worksize" : 8, "alpha" : 64, "beta" : 8, "index" : X, "multi_hash":944 }      for 4Gb (doublethread)

Whit this configuration I can get 950h/s on 0.33b4

I also did some test for bittube but also here I don't reached a stable configuration!
The system sometimes crash during the job (the card that goes into error changes almost every time) other times the miner start and stop immediately after connection with the pool (for this problem I think a problem with a card but it don't write which card goes wrong).

For all this problem I create this scheduled task procedure (win10): if something goes wrong the system restart itself (on startup I have the bat that start a miner process, usually or your or phoenixminer)

Code:
@ECHO OFF

rem exit

SETLOCAL EnableExtensions
set EXE=jce_cn_gpu_miner64.exe
FOR /F %%x IN ('tasklist /NH /FI "IMAGENAME eq %EXE%"') DO IF %%x == %EXE% goto FOUND

set EXE=PhoenixMiner.exe
FOR /F %%x IN ('tasklist /NH /FI "IMAGENAME eq %EXE%"') DO IF %%x == %EXE% goto FOUND

set EXE=SRBMiner-CN.exe
FOR /F %%x IN ('tasklist /NH /FI "IMAGENAME eq %EXE%"') DO IF %%x == %EXE% goto FOUND

echo Mining process is not running, restarting windows...
ping 127.0.0.1 -n 30 > nul
shutdown /r /t 60

goto END

:FOUND
echo %EXE% is running
ping 127.0.0.1 -n 3 > nul
goto QUIT

:END
ping 127.0.0.1 -n 5 > nul
rem pause

:QUIT
exit