Search Explore

Show HN: A free, GPU-accelerated Texas Hold'em GTO solver in C++/CUDA

https://bupticybee.github.io/texassolver_gpu_page/

bupticybee · 1 days ago

I built this mostly because I love the intersection of game AI, high-performance computing, and poker.

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!

1 comments

  • rh94 · 1 days ago

    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?

    • bupticybee · 1 days ago

      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.