I don't think that creating separate map versions with and without SIMD is a good idea.
I'd much rather build and benchmark all maps with -march=native and once without, as every implementation will benefit from -march=native to some extend, even if they didn't explicitly use SIMD intrinsics.
I don't think that creating separate map versions with and without SIMD is a good idea. I'd much rather build and benchmark all maps with
-march=native
and once without, as every implementation will benefit from-march=native
to some extend, even if they didn't explicitly use SIMD intrinsics.