yeah. The Neoscrypt kernal is pretty good.
Looks like the latest changes in the lyra2v2 is hurting the 980/980ti performance.. Since I have added a memory access (level1 cache) I think the tpb(threads per block) needs to be retuned.
search for these lines in the code (lyra2rev2.cu)
and change tpb
1,2,3,4,5,6,7.... 256?
else if (strstr(props.name, "980"))
{
intensity = 256 * 256 * 18;
tpb = 8;
}
and...
else if (strstr(props.name, "980 Ti"))
{
intensity = 256 * 256 * 18;
tpb = 8;
}
NEOSCRYPT--
Neoscrypt will not solo-mine. None of the wallets (phoenixcoin, feathercoin, UFOcoin, etc) communicate properly with the miner. I keep getting "Invalid JSON data", and "Unable to start getwork" errors with tpruvot's ccminer, and no error information with your ccminer. These are really low diff coins, with small network hash rates. --scryptr
For sp's .72 don't forget to use the flag --broken-neo-wallet
It appears to work but gets nooo's so far with my test of phoenixcoin.
Command line:
ccminer.exe -a neoscrypt --no-gbt --no-longpoll -o 127.0.0.1:9556 -u phoenixcoinpc -p x -d 0 -i 10 --broken-neo-wallet
phoenixcoin.conf:
server=1
daemon=1
defaultkey=1
logtimestamps=1
dns=1
addnode=prometheus.phoenixcoin.org:9555
addnode=menoetius.phoenixcoin.org:9555
addnode=atlas.phoenixcoin.org:9555
rpcuser=phoenixcoinpc
rpcpassword=x
rpcport=9556
rpcconnect=127.0.0.1
rpcallowip=192.168.*.*
algo=phoenixcoin
.conf should be located in C:\Phoenixcoin-win64-0.6.5.1\Phoenixcoin\data
in the data folder.