Show HN: A free, GPU-accelerated Texas Hold'em GTO solver in C++/CUDA(bupticybee.github.io)
bupticybee.github.io
Show HN: A free, GPU-accelerated Texas Hold'em GTO solver in C++/CUDA
https://bupticybee.github.io/texassolver_gpu_page/
4 comments
I’ve done good deal of cfr/deepstack work my self, can you tell us bit more details how it works under the hood?
In particular, what is the gpu part?
In particular, what is the gpu part?
GPU is good at doing parallel task that in nature is the same. So it fit perfectly in CFR context. CFR is basically doing a lot of similar work across nodes. So if you implememnt a cuda kernel for regret matching, it will accelerate the solving process a lot.
[deleted]
I’d love for anyone interested in game theory or CUDA optimization to tear it apart, test the accuracy, and give me feedback. Happy to answer any questions about the algorithms, the transition from CPU to GPU, or poker AI in general!