update bench_expectations with wider range before further investigations and discussions; change precision of bench values to 0.001.

git-svn-id: http://skia.googlecode.com/svn/trunk@6575 2bbb7eff-a529-9590-31e7-b0007b416f81
This commit is contained in:
bensong@google.com 2012-11-27 21:52:32 +00:00
parent e2f8c7c876
commit dc2dd2e72f
2 changed files with 2062 additions and 2062 deletions

File diff suppressed because it is too large Load Diff

View File

@ -32,8 +32,8 @@ from oauth2_plugin import oauth2_plugin
# Ratios for calculating suggested picture bench upper and lower bounds.
BENCH_UB = 1.05 # Allow for 5% room for normal variance on the up side.
BENCH_LB = 0.9
BENCH_UB = 1.1 # Allow for 10% room for normal variance on the up side.
BENCH_LB = 0.85
# List of platforms to track.
PLATFORMS = ['Mac_Float_Bench_32',
@ -123,7 +123,7 @@ def OutputSkpBenchExpectations(rev_min, rev_max, representation_alg):
for key in keys:
bench_val = expectation_dic[key]
# Prints out expectation lines.
print '%s,%.2f,%.2f,%.2f' % (key, bench_val, bench_val * BENCH_LB,
print '%s,%.3f,%.3f,%.3f' % (key, bench_val, bench_val * BENCH_LB,
bench_val * BENCH_UB)
def main():