Chia-Network / bladebit

A high-performance k32-only, Chia (XCH) plotter supporting in-RAM and disk-based plotting
Apache License 2.0
340 stars 107 forks source link

fatal Error when trying to make more than 1 plot #419

Closed Drhicom closed 9 months ago

Drhicom commented 9 months ago

Using bladebit_cuda.exe 3.1.0-rc2, When using this string it stops after the first plot, and gives the fatal Error . bladebit_cuda -f -c -n 3 --compress 7 cudaplot --disk-128 -t1 F:\nvme\ E:\plots\ --check 100 --check-threshold 0.8 If I take off the --check 100 --check-threshold 0.8 from the end it makes all 3 plots.

2023-09-25_173534

Ron-ski commented 9 months ago

Try moving the check commands directly after cudaplot.

Drhicom commented 9 months ago

image

Drhicom commented 9 months ago

Here is the string you suggested, putting the check right behind cudaplot C:\bb_rc2>.\bladebit_cuda.exe -t 16 -f ffffff -c cccccc -n 2 -z 7 cudaplot check 100 check-threshold0.8 F:\nvme\

So this is run with 256gb of system ram, if I remove the check staements it completes the plots.

Drhicom commented 9 months ago

With the help from Ronski, he debuged the string I had copied from Discord, which didn't have a space before the 0.8.

C:\bb_rc2>.\bladebit_cuda.exe -t 16 -f fffff -c ccccc -n 2 -z 7 cudaplot --check 100 --check-threshold 0.8 g:\plots\ This made two plots, with the check

Thank You Ronski!!!

Drhicom commented 9 months ago

Thanks again Ronski