> // This file contains highly optimized versions of vector operations > // that benefit from compiler auto-vectorization on modern CPUs.
https://github.com/stoolap/stoolap/blob/9c0ceda3bb9c674a9758...
Unfortunately, the standard Go compiler explicitly doesn't auto-vectorize, so saying that this is a pure Go SIMD database isn't strictly correct. You'll only get this if you compile with gccgo.
physicsguy•4h ago
> // This file contains highly optimized versions of vector operations > // that benefit from compiler auto-vectorization on modern CPUs.
https://github.com/stoolap/stoolap/blob/9c0ceda3bb9c674a9758...
Unfortunately, the standard Go compiler explicitly doesn't auto-vectorize, so saying that this is a pure Go SIMD database isn't strictly correct. You'll only get this if you compile with gccgo.