as I said. it wont help you if you do the rounding after the calculation. It can only help you in cases where you use the rounded value alot afterwards.
E.g.
This:
roundedValue = round(12.123132165468798763213654) --> (roundedvalue = 12.12)
for i = 0 to i = 1000000
Do calculations on roundedValue
Would be faster then this:
for i = 0 to i = 1000000
Do calculations on 12.123132165468798763213654
But in your case (as the others mention) you will just add an extra calculation to the cpu cycle (the rounding)