Parallelization of SAT Algorithms on GPUs [pdf]
algos.inesc-id.pt
Parallelization of SAT Algorithms on GPUs [pdf]
1–10 of 19 posts
Re: Parallelization of SAT Algorithms on GPUs [pdf]
#2If I had to guess, I would think implementing a SAT solver on a GPU is quite hard. Many branches etc.
Re: Parallelization of SAT Algorithms on GPUs [pdf]
#3This is a proposed work for a Master's thesis. It seems to be from 2013, so I wonder whether it was successful? If I had to guess, I would think implementing a SAT solver on a GPU is quite hard. Many branches etc.
Re: Parallelization of SAT Algorithms on GPUs [pdf]
#4This approach is unworkable because: * propagation needs modification of the watchlist (or it needs to have all literals of all clauses attached, which is incredibly slow and also unworkable) * propagation is actually only about 50-60% of what a solver is doing: conflict resolution, clause database management and inprocessing takes a lot of time * propagation is hard to parallelize as you need to update a global data structure of propagated literals and then act on that * etc
This proposal will not work (and I sure it did not, if it was ever tried) and I don't understand how it got this high at ycombinator. If you want to look at good SAT solvers, look at lingeling, COPMinisat, MiniSat, or CryptoMiniSat. You may learn a lot from them. Easy starting is MiniSat. Good luck :)
Re: Parallelization of SAT Algorithms on GPUs [pdf]
#5This is a proposed work for a Master's thesis. It seems to be from 2013, so I wonder whether it was successful? If I had to guess, I would think implementing a SAT solver on a GPU is quite hard. Many branches etc.
It seems Mr Costa has graduated, but the link to his thesis points to an empty pdf.
Re: Parallelization of SAT Algorithms on GPUs [pdf]
#6The annual SAT competition http://www.satcompetition.org has a track for parallel solving.
See [2, 3, 4] for an overview of the field.
[1] M. J. H. Heule, O. Kullmann, S. Wieringa, A. Biere, Cube and Conquer: Guiding CDCL SAT Solvers by Lookaheads.
[2] S. Hölldobler, N. Manthey, V. H. Nguyen, J. Stecklina, P. Steinke, A Short Overview on Modern Parallel SAT-Solvers.
[3] S. Wieringa, K. Heljanko, Asynchronous Multi-Core Incremental SAT Solving.
[4] Y. Hamadi, C. M. Wintersteiger, Seven Challenges in Parallel SAT Solving.
Re: Parallelization of SAT Algorithms on GPUs [pdf]
#7This approach is unworkable, it has been demonstrated many times. I have not only been developing a SAT solver for >7 years (with >9000 commits) but also have participated in the SAT competition in all these years. I used to get a proposal like this a lot (thankfully, they dried up). None of them made it work. I used to work on programming GPGPUs in a professional setting, (rainbow table generators&lookup systems), s…
If you want to look at good SAT
solvers, look ... CryptoMiniSat.
Any personal relationship with CryptoMiniSat? ;)Re: Parallelization of SAT Algorithms on GPUs [pdf]
#8This approach is unworkable, it has been demonstrated many times. I have not only been developing a SAT solver for >7 years (with >9000 commits) but also have participated in the SAT competition in all these years. I used to get a proposal like this a lot (thankfully, they dried up). None of them made it work. I used to work on programming GPGPUs in a professional setting, (rainbow table generators&lookup systems), s…
If you want to look at good SAT solvers, look ... CryptoMiniSat. Any personal relationship with CryptoMiniSat? ;)
Re: Parallelization of SAT Algorithms on GPUs [pdf]
#9This approach is unworkable, it has been demonstrated many times. I have not only been developing a SAT solver for >7 years (with >9000 commits) but also have participated in the SAT competition in all these years. I used to get a proposal like this a lot (thankfully, they dried up). None of them made it work. I used to work on programming GPGPUs in a professional setting, (rainbow table generators&lookup systems), s…
PicoSAT is also small and easy to embed, however in CryptoMiniSat we trust, thank you very much!
Re: Parallelization of SAT Algorithms on GPUs [pdf]
#10There is quite a bit of work on parallelising SAT solving, as it's one of the most important algorithmic problems, both in theory and in practise, but (as far as I'm aware) the top sequential algorithms still beat parallel solvers. The most successful approach at this point seems to be Cube-and-Conquer [1], but I don't think this is considered a good approach in itself. There is a huge amount of scope for new ideas.…