Post
Topic
Board Mining (Altcoins)
Re: Claymore's ZCash AMD GPU Miner v1.0
by
Cryptozillah
on 05/11/2016, 11:12:05 UTC
Stock BIOS is best to use with 4XX cards here.  Actually got better speeds when flashing back to stock from my ETH mod BIOS.
What hashrate do you get with stock bioses ?

My numbers with strap modded bioses.
470: 45-46 s/s
480: 49-50s/s

what config you use clock, mem, times ?
470: GPU: stock, Mem: 1940Mhz. 1500strap mod
480: GPU: stock, Mem: 2200Mhz. 1500strap mod
Bat file made to restart claymore miner once per hour.


setx GPU_FORCE_64BIT_PTR 0
setx GPU_MAX_HEAP_SIZE 100
setx GPU_USE_SYNC_OBJECTS 1
setx GPU_MAX_ALLOC_PERCENT 100
setx GPU_SINGLE_ALLOC_PERCENT 100

timeout 5
@echo off

echo:

set executable=ZecMiner64.exe
set commandline= -zpool equihash.eu.nicehash.com:3357 -zwal BTCADRESS.RIGNAME -zpsw x -allpools 1
set runforseconds=3600
set restartinseconds=5
set /a counter=0
timeout 5
:start
start "genoil" %executable% %commandline%
echo:
echo The software will run for %runforseconds% seconds
timeout %runforseconds%
taskkill /f /im %executable%
echo:
echo Restarting the software in %restartinseconds% seconds (%counter%)
timeout %restartinseconds%
set /a counter+=1
echo:
echo:
goto start