Differences between revisions 2 and 3
Revision 2 as of 2004-01-25 17:50:12
Size: 650
Editor: yakko
Comment:
Revision 3 as of 2004-01-25 17:50:44
Size: 666
Editor: yakko
Comment:
Deletions are marked like this. Additions are marked like this.
Line 11: Line 11:
Given several programs P1, P2, ..., Pn, the average normalized execution time is Given several programs P1, P2, ..., Pn, the average (GeometricMean) normalized execution time is

Back to ComputerTerms

Normalize: Given a reference execution time A, take the execution time you have (B) and divide it by the reference execution time. What you get is a normalized execution time of B with respect to A.

                    Excution time of B
Normalized(B) = ----------------------------
                 Reference Execution Time A 

Given several programs P1, P2, ..., Pn, the average (GeometricMean) normalized execution time is

 For (i=1; i++, <= n) {
   P *= Normalized(Pi) 
 }
 return P^(1/n)

or
       _____________
      / n
   n / __
    /  ||  Normalized(Pi)
  \/   i=1

Back to ComputerTerms

AverageNormalizedExecutionTime (last edited 2020-01-26 18:56:30 by scot)