> 19% is a huge difference.
IMO that in the realm of microbenchmarks, it really isn't. You clearly disagree, not much I can do about that.
> That C code isn't well-optimized at all...
Go ahead and fix it then. You've been telling me much the same. I already mentioned that the other benchmark you linked me to wasn't optimized.
> Does that mean it is impossible to prove to you that C is at least 2x faster than Rust since twice is less than one order of magnitude
I use the term loosely, 2x is certainly alarming. As long as you rely on simd benchmarks I will disagree though, since in most cases a lack of that optimization isn't the reason your program is slow. If you really really care about performance, use nightly rust; there's no cost to that. I have yet to see production C code that uses SIMD everywhere possible, just in some tight loops. That is not going to create a 2x difference in performance unless the tight loop dominates all else. That is not most use cases.