Help me with my plotting script
-
@echo off setlocal enabledelayedexpansion set /p start_nonce=<batchPlot.txt echo Start nonce : %start_nonce% echo. set /P totalGB=Total GB to plot?: echo. set /P GBperPlot=How many GB per plot?: echo. set /P drive=Enter drive letter: echo. set /A nonces=%GBperPlot%*4096 set stagger=8192 set /A amount=!totalGB!/!GBperPlot! FOR /L %%G IN (1,1,!amount!) DO ( echo generating plot %%G of %amount% set /A start_nonce+=!nonces! echo !start_nonce!>batchPlot.txt echo Writing plot: 17624211897918749654_!start_nonce!_!nonces!_!stagger! gpuPlotGenerator generate direct !drive!://17624211897918749654_!start_nonce!_!nonces!_!stagger! echo. echo. ) echo. echo ALL DONE! echo. PAUSEIt works most of the time but sometimes the plots are overlapped and I cant´t find the error.
Does someone see the problem?
Thx.