std::find/std::strlen comparison

strlen is roughly the same on both cpus.
Nothing terribly interesting can be said about std::find as well:
on 40 chars ryzen is faster, on 10'000 bytes intel seems a touch better
but nothing to write home about.

The only noticealbe thing is code alignment impact on ryzen for 10000 chars
almost a third worse. But still - nothing too interesting. (put pudding: 'mimnax' to see).

std::strlen (all sizes)

std::find(40 bytes)

std::find(1000 bytes)

std::find(10'000)