https://irclogs.nim-lang.org/23-12-2019.html#16:10:45
16:10:45 FromDiscord <mratsim> the best simd wrapper is here: https://github.com/numforge/laser/blob/master/laser/simd.nim 😉
But he asked not about a lib, but about simd code for md5.
Note: your compiler might already do SIMD and you might not be able to beat it by writing your own what basically is assembly. Always Benchmark!!
Note: if you use SIMD just for that one thing they take a while to "startup" as current in the CPU has to be shifted to power a new area in the CPU. Having a couple of random SIMD instructions in your otherwise non-SIMD program might actually make it way slower. Always Benchmark!!!