If, for whatever reason, your compiler cannot be trusted to exhibit basic optimization competence, and the code it generates runs with lower performance than you were expecting based on machine limits (you're measuring performance, and you know those limits, right?), then you can start optimizing manually:
Lift loop-invariant calculation outside the loop:
int main()
{
float fsum[50],a=10.45;
float aa = a * a;
int isum[100],b=20;
int bb = b * b;
for(int i=0;i<100;i++)
{
if(i<50) {
fsum[i] = aa;
}
isum[i] = bb;
}
return 0;
}
Split the loop, and set the bounds to match the enclosed condition
int main()
{
float fsum[50],a=10.45;
float aa = a * a;
int isum[100],b=20;
int bb = b * b;
for(int i=0; i < 50; i++)
{
fsum[i] = aa;
}
for(int i=0;i<100;i++)
{
isum[i] = bb;
}
return 0;
}
Now, if the compiler can't manage to unroll and vectorize a single-level simple loop or two, then those are your problem. Go look them up.
cin>>b;No point in optimizing the FP operations – Karthik T Jan 11 at 5:32+ =shouldn't (presumably you intended+=?) – Jerry Coffin Jan 11 at 5:36