Skip to content

Releases: Chia-Network/chiapos

Chia Proof of Space 0.12.41

31 Dec 22:07
Compare
Choose a tag to compare

Fixed

  • When adding bitfield back-sort we broke compatibility with BSD. That is fixed in this release.

0.12.40

13 Dec 23:38
d80edb2
Compare
Choose a tag to compare

Added no bitfield plotting option (-e)

0.12.39

12 Dec 03:40
Compare
Choose a tag to compare

Added

  • We now instrument temp space, time, and memory used building two k=27 on ci for performance tracking and comparison one for each back propagation method.

Changed

  • We added a -e flag to allow you to choose between bitfield back propagation and the original back propagation. This brings performance a little ahead of the Beta 17 plotter release. However bitfield back propagation may perform faster on spinning disk. YMMV.
  • More of the sorts in the bitfield sort use uniform sort for better performance.
  • This version requires slightly more RAM at each k size.

Fixed

  • Previous releases were not deleting temp files as they were no longer needed and therefor temp space needed for a k=32 went from 332 GiB to 499 GiB. This version only needs 332 GiB when using -u 64.
  • Beta 17 style back prop had a buck that could occasionally lead to a segfault. We fixed that when using the -e flag.

0.12.38

04 Dec 18:32
Compare
Choose a tag to compare

Fixed

  • We now close unused file-handles in the temp directory to avoid exceeding rlimit when using the new bitfield backprop and 128 sorting buckets.

0.12.37

03 Dec 19:04
cc88672
Compare
Choose a tag to compare

Fixed

  • Changed scope of match_indexes to make sure they are always reset even if R bucket is empty. This fixes "error 0" retrying in 5 minutes issues in certain edge cases.
  • Windows plotting now correctly reports CPU utilization.

0.12.35

11 Nov 13:20
Compare
Choose a tag to compare

Added

  • F1 generation is now fully parallel for a small speedup.
  • We have bitfield optimized phase 2. There is only about a 1% increase in speed from this change but there is a 12% decrease in writes with a penalty of 3% more reads. More details in PR 120
  • You can now build chiapos with Cmake and MSVC. We know build and test C++ for Windows as well as create and test Windows wheels.

Changed

  • We have moved from using gulrak/filesystem across all platforms to only using it on MacOS. It's required on MacOS as we are still targeting Mojave compatibility. This should resolve Windows path issues.
  • Various pointers and memory management were modernized.

Fixed

  • Starting with recent setuptools fixes, we can no longer pass an empty string to the linker on Windows when building binary wheels. Thanks @jaraco for tracking this down.

0.12.33

23 Oct 01:58
Compare
Choose a tag to compare

Fixed

  • When fixing a possible problem with reading past a buffer, we slowed down total performance by about 20%. This has an alternative fix that should maintain 0.12.31/Beta 15's plotting speed - if not speed up some based on other improvements in 0.12.32.
  • Certain NTFS mount points could cause an error in gulrak/filesystem. We've implemented a patch and upstreamed the issue. See gulrak/filesystem#75
  • Added additional plotting testing to GitHub Actions
  • Separated out the C++ build/test workflow from the Ubuntu wheel build and test.

0.12.32

15 Oct 18:30
Compare
Choose a tag to compare

Added

  • Significant speed ups to F1 plotting.
  • You can now log disk I/O and there is a gnuplot script to plot disk usage.

Changed

  • The command to ProofOfSpace is now create instead of generate to align with chia-blockchain.
  • pep517.build was deprecated on the ci build.
  • A plethora of memory management, code readability, and compute efficiencies were improved.
  • Various unused code was removed.
  • C++ tests were added to the default cmake build process.

Fixed

  • There was an out of bounds read that could crash the plotter in SliceInt64FromBytes().
  • gulrak/filesystem was updated to 1.3.6 and it should address certain writing failures on windows around the case of the drive letter. See gulrak/filesystem#70

Use 10 bits instead of 9.

21 Aug 20:43
Compare
Choose a tag to compare

Fixes a bug introduced in Beta 1.8 that could cause a buffer overrun on larger k size plots.

0.12.22

16 Jun 19:03
f8df61c
Compare
Choose a tag to compare

don't keep file handles open as we might exceed OS limits