(no title)
alberth | 2 months ago
If you know the architecture and oldest CPU model, we're better served with added a bunch more flags, no?
I wish I could compile my server code to target CPU released on/after a particular date like:
-O2 -cpu-newer-than=2019
cogman10|2 months ago
-O2 in gcc has vectorization flags set which will use avx if the target CPU supports it. It is less aggressive on vectorization than -O3.
singron|2 months ago
SubjectToChange|2 months ago
cogman10|2 months ago