|
|
|
|
|
by c0deb0t
2260 days ago
|
|
I took a look at the code, and read the paper. It seems that they directly calculate the entire 2D DP array, but use SIMD to allow each cell to contain multiple values, one for each query string. My approach uses anti-diagonals instead, but it is fast for one vs one comparisons, instead of handling multiple query strings. Regardless, my goal was to learn some SIMD and Rust (first time for both), so I did not read many background papers. |
|