cameron-martin / tsumego-solver

A program for solving and generating tsumego puzzles.
33 stars 5 forks source link

Experiment: SIMD #2

Closed cameron-martin closed 4 years ago

cameron-martin commented 4 years ago

All operations on boards are phrased using SSE intrinsics, which means operations on an entire bitboard can be done at once rather than splitting it into two 64-bit integers. This results in promising performance improvements.

cameron-martin commented 4 years ago

Overall, I don't think this is worth it.