chia-plotter VS chiapos

Compare chia-plotter vs chiapos and see what are their differences.

Our great sponsors
  • WorkOS - The modern identity platform for B2B SaaS
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • SaaSHub - Software Alternatives and Reviews
chia-plotter chiapos
69 23
2,292 269
- -1.1%
3.4 7.4
about 2 months ago 12 days ago
C HTML
Apache License 2.0 Apache License 2.0
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

chia-plotter

Posts with mentions or reviews of chia-plotter. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-03-09.
  • Plotters for K33 ?????
    1 project | /r/chia | 26 May 2023
    The original Madmax plotter supports both K33 and K34, https://github.com/madMAx43v3r/chia-plotter
  • How to plot just in RAM
    2 projects | /r/chia | 9 Mar 2023
    I didn’t use madmax for like 8 months so I don’t remember, but checkout the default number here https://github.com/madMAx43v3r/chia-plotter The thread number is depending on how many thread your cpu got. I think the more thread is better. Try to put thread = 36 and buckets = 256
  • How long does it take to make a plot?
    1 project | /r/chia | 19 Feb 2023
    I would suggest canceling and plotting with the Chia POS plotter. For testing, the Chia POS plotter should be fast enough. The madMAx plotter is generally faster but it has had issues plotting from the Chia Network client in the past. If you want to use the madMAx plotter, I would suggest using the standalone version directly from madMAx's github (which has a link to the github that does windows compiles in the install directions).
  • I need help installing mad max 😭😭
    1 project | /r/chia | 28 Oct 2022
    git clone https://github.com/madMAx43v3r/chia-plotter.git
  • Reverse engineering the plotting process
    3 projects | /r/chia | 20 Oct 2022
    No need to reverse engineer anything. It's explained in all the detail you need in the Chia Proof of Space Construction document. It's implemented in chiapos though I find madmax's implementation of the plotter to be easier to read: https://github.com/madMAx43v3r/chia-plotter/tree/master/include/chia
  • How to fix MadMAx Plotter not installed error
    5 projects | /r/chia | 7 Sep 2022
    The article you mentioned said that all the questions about the madmax plotter has to updated on its official GitHub repo, https://github.com/madMAx43v3r/chia-plotter, so I made a copy of the same complained and updated it onto the official madmax plotter repo (and the link was given by the official chia repo).
  • Will Chia plotting destroy my NVMe SSD!? Understanding SSD endurance (TBW)
    2 projects | /r/chia | 2 Apr 2022
    Yes, see https://github.com/madMAx43v3r/chia-plotter for plotting with a ramdisk and https://github.com/ericaltendorf/plotman to automate everything.
  • Chia plotting using Gui / Power shell stops after table 1
    1 project | /r/chia | 3 Feb 2022
    The OP can try using the non-packaged version https://github.com/madMAx43v3r/chia-plotter
  • GUI AND maDMAX
    1 project | /r/chia | 2 Feb 2022
    You can get around this by using the standalone version of madmax or setting your temp directory as your final directory and using a script to monitor and move .plot files to your final directory.
  • How to plot without Chia Application?
    2 projects | /r/chia | 15 Dec 2021
    You can install madmax directly (or use the compiled windows binary). Disclaimer: neither are officially endorsed but I've used them with no issues.

chiapos

Posts with mentions or reviews of chiapos. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2022-10-20.
  • Reverse engineering the plotting process
    3 projects | /r/chia | 20 Oct 2022
    No need to reverse engineer anything. It's explained in all the detail you need in the Chia Proof of Space Construction document. It's implemented in chiapos though I find madmax's implementation of the plotter to be easier to read: https://github.com/madMAx43v3r/chia-plotter/tree/master/include/chia
  • Revolutionary New Pool & Plotting Mechanism?
    1 project | /r/chia | 12 Jul 2022
    If true, my assumption is they are implementing a Hellman attack on Table 1. Chia already describes the process here: https://github.com/Chia-Network/proofofspace/blob/master/proof_of_space.md#Hellman-Attacks and gives example code here: https://github.com/Chia-Network/chiapos/tree/main/hellman_example
  • Blog post: Flexfarmer update and benefits
    1 project | /r/Flexpool | 5 Feb 2022
  • Changing chia plot file keys (memo)
    1 project | /r/chia | 15 Jun 2021
    I'm trying to farm plots created with different keys on a different machine. I know that I could add the plotter machine's keys to the farming machine and there is no official way to edit plots and change keys, but I'm interested in hacking things and looking at plotter_disk.hpp of chiapos, this is how the header (first few bytes) of a plot file looks like:
  • hpool says plots bad, Chia GUI farms them
    2 projects | /r/hpoolchia | 10 Jun 2021
    git clone https://github.com/Chia-Network/chiapos.git cd chiapos && mkdir build && cd build && cmake .. && make -j8 ./ProofOfSpace check -f plot-k32-???.plot \[num\_iterations\]
  • Has someone compiled the 20% improvement "combined" chiapos for windows?
    7 projects | /r/chia | 4 Jun 2021
    Is this the branch https://github.com/Chia-Network/chiapos/commit/369c9e773d9d43b00696771aad46cc5b4c54e785 ?
  • Plotting destination file system
    2 projects | /r/chia | 3 Jun 2021
    on my list above is just hard to do perfectly unless you specifically engineer the system that way. Thsi project probably manages to hit erasure blocks just right by virtue of the fact that it uses fairly large files, but it could probably be tuned to work better. You could maybe get partway there by changing the internal buffer size of the buffered disk in the plotter and recompiling/pip install-ing the plotter. In that case the buffer size would need to be the same size as the erasure block size of the SSD (or a multiple of it), but that is generally ~64-128MB these days. This approach would also cause somewhat higher memory consumption because the internal buffer size is for each bucket in each sort manager that is being actively written to, so more buckets with a larger buffer -> more RAM use (this is outside the memory limit you set on the command line).
  • Plotting with temp in RAM slower that expected.
    1 project | /r/chia | 29 May 2021
    By the time you get to NVME you are definitely CPU starved; give it more buckets and leave RAM at 3390. I dont think you can go past 512 without applying https://github.com/Chia-Network/chiapos/pull/202
  • Simple way to SAFELY update to the multithreaded chiapos library on Linux / MacOS
    5 projects | /r/chia | 27 May 2021
    The changes from https://github.com/Chia-Network/chiapos/commits/main commit cleanly into combined with the exception of the std::cout << "Using optimized chiapos"; bits which can be manually fixed, just FYI.
  • Chiapos 1.03 released - 10% phase 3 speed up
    3 projects | /r/chia | 27 May 2021
    Sure you're not thinking of the P1 speed up from #208?

What are some alternatives?

When comparing chia-plotter and chiapos you can also consider the following projects:

bladebit - A high-performance k32-only, Chia (XCH) plotter supporting in-RAM and disk-based plotting

rapiddisk - An Advanced Linux RAM Drive and Caching kernel modules. Dynamically allocate RAM as block devices. Use them as stand alone drives or even map them as caching nodes to slower local disk drives. Access those volumes locally or export them across an NVMe Target network. Manage it all from a web API.

plotman - Chia plotting manager

chia-blockchain - Chia blockchain python implementation (full node, farmer, harvester, timelord, and wallet)

tetcore-node-template - A fresh FABRIC-based Tetcore node, ready for hacking 🚀

chiapos - Chia Proof of Space library, fork for optimized plotting. If you want to support the development, donations are welcome: xch1lnnarj8tzx56fwe4gnds8365kj896a9tq08yt8pwsgqxczpqdkvs8n8dua

socks-blockchain - Use your Chia ™ plots to farm spare Socks!

Swar-Chia-Plot-Manager - This is a Cross-Platform Plot Manager for Chia Plotting that is simple, easy-to-use, and reliable.

chia-plotter

harry-plotter - An easy to use graphical chia plot manager & optimizer for windows, mac & linux. You're a farmer, Harry!