Story Details

  • Span<T>.SequenceEquals is faster than memcmp

    Posted: 2025-03-30 14:53:33

    .NET 7's Span<T>.SequenceEqual, when comparing byte spans, outperforms memcmp in many scenarios, particularly with smaller inputs. This surprising result stems from SequenceEqual's optimized implementation that leverages vectorization (SIMD instructions) and other platform-specific enhancements. While memcmp is generally fast, it can be less efficient on certain architectures or with smaller data sizes. Therefore, when working with byte spans in .NET 7 and later, SequenceEqual is often the preferred choice for performance, offering a simpler and potentially faster approach to byte comparison.

    Summary of Comments ( 27 )
    https://news.ycombinator.com/item?id=43524665

    Hacker News users discuss the surprising performance advantage of Span<T>.SequenceEquals over memcmp for comparing byte arrays, especially when dealing with shorter arrays. Several commenters speculate that the JIT compiler is able to optimize SequenceEquals more effectively, potentially by eliminating bounds checks or leveraging SIMD instructions. The overhead of calling memcmp, a native function, is also mentioned as a possible factor. Some skepticism is expressed, with users questioning the benchmarking methodology and suggesting that the results might not generalize to all scenarios. One commenter suggests using a platform intrinsic instead of memcmp when the length is not known at compile time. Another commenter highlights the benefits of writing clear code and letting the JIT compiler handle optimization.