Karna@lemmy.ml to Linux@lemmy.ml · 3 days agoUbuntu 25.04 "Plucky Puffin" Development Opens - Defaulting To -O3 Optimizationswww.phoronix.comexternal-linkmessage-square14fedilinkarrow-up153arrow-down11
arrow-up152arrow-down1external-linkUbuntu 25.04 "Plucky Puffin" Development Opens - Defaulting To -O3 Optimizationswww.phoronix.comKarna@lemmy.ml to Linux@lemmy.ml · 3 days agomessage-square14fedilink
minus-squareGolfNovemberUniform@lemmy.mllinkfedilinkarrow-up2arrow-down3·3 days agoNot like Ubuntu works very well on old hardware but hopefully O2 support will still be there. Many people need it.
minus-squareozymandias117@lemmy.worldlinkfedilinkEnglisharrow-up8·3 days ago-O2 vs -O3 adds -fgcse-after-reload -fipa-cp-clone -floop-interchange -floop-unroll-and-jam -fpeel-loops -fpredictive-commoning -fsplit-loops -fsplit-paths -ftree-loop-distribution -ftree-partial-pre -funswitch-loops -fvect-cost-model=dynamic -fversion-loops-for-strides I don’t think any of these optimizations require more modern hardware?
minus-squarethemoken@startrek.websitelinkfedilinkarrow-up5·3 days agoRight. GCC -f optimizations are basically like “how hard are we going to try to be clever” and are, I believe, orthogonal to the actual instructions used. Machine dependent args start with -m, like -march or -mavx etc.
Not like Ubuntu works very well on old hardware but hopefully O2 support will still be there. Many people need it.
-O2 vs -O3 adds
-fgcse-after-reload -fipa-cp-clone -floop-interchange -floop-unroll-and-jam -fpeel-loops -fpredictive-commoning -fsplit-loops -fsplit-paths -ftree-loop-distribution -ftree-partial-pre -funswitch-loops -fvect-cost-model=dynamic -fversion-loops-for-strides
I don’t think any of these optimizations require more modern hardware?
Right. GCC -f optimizations are basically like “how hard are we going to try to be clever” and are, I believe, orthogonal to the actual instructions used. Machine dependent args start with -m, like -march or -mavx etc.